From 428bfab32e30a515f9503eea9634e2954e7189a6 Mon Sep 17 00:00:00 2001 From: Alex Kim Date: Thu, 9 Jun 2016 10:39:40 -0700 Subject: [PATCH] bump to 0.6.4 --- setup.py | 2 +- vertica_python/__init__.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index e93311e8..d556e313 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.3', + version='0.6.4', 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 b8a48b86..5bd8e26b 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, 3) +version_info = (0, 6, 4) __version__ = '.'.join(map(str, version_info))