From af783b3c427901a7ec6484b10b2107c898ff8ff7 Mon Sep 17 00:00:00 2001 From: Alex Kim Date: Mon, 23 May 2016 11:25:10 -0700 Subject: [PATCH] 0.6.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 78c1730d..e93311e8 100644 --- a/setup.py +++ b/setup.py @@ -10,7 +10,7 @@ # version should use the format 'x.x.x' (instead of 'vx.x.x') setup( name='vertica-python', - version='0.6.2', + version='0.6.3', description='A native Python client for the Vertica database.', author='Justin Berka, Alex Kim, Kenneth Tran', author_email='justin.berka@gmail.com, alex.kim@uber.com, tran@uber.com', diff --git a/vertica_python/__init__.py b/vertica_python/__init__.py index a5fac1d2..b8a48b86 100644 --- a/vertica_python/__init__.py +++ b/vertica_python/__init__.py @@ -6,7 +6,7 @@ # Main module for this library. # The version number of this library. -version_info = (0, 6, 2) +version_info = (0, 6, 3) __version__ = '.'.join(map(str, version_info))