From 2082ec7c609a8c42282dfc40a26db59c5e7861c9 Mon Sep 17 00:00:00 2001 From: Alex Kim Date: Wed, 11 Jun 2014 11:44:56 -0700 Subject: [PATCH] v 0.2.3 --- setup.py | 2 +- vertica_python/__init__.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index ea1e334c..31fffd2c 100644 --- a/setup.py +++ b/setup.py @@ -9,7 +9,7 @@ setup( name='vertica-python', - version='0.2.2', + version='0.2.3', description='A native Python client for the Vertica database.', author='Justin Berka, Alex Kim', author_email='justin.berka@gmail.com, alex.kim@uber.com', diff --git a/vertica_python/__init__.py b/vertica_python/__init__.py index 36b233f4..6a4ceaa5 100644 --- a/vertica_python/__init__.py +++ b/vertica_python/__init__.py @@ -24,7 +24,7 @@ # Main module for this library. # The version number of this library. -version_info = (0, 2, 2) +version_info = (0, 2, 3) __version__ = '.'.join(map(str, version_info)) __author__ = 'Uber Technologies, Inc'