From cbe2046a1d55f9eedccfe51bb22d7583cbb30738 Mon Sep 17 00:00:00 2001 From: Alex Kim Date: Thu, 23 Mar 2017 11:44:34 -0700 Subject: [PATCH] 0.6.14 --- setup.py | 2 +- vertica_python/__init__.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index 83aec6a5..d0b785ac 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.13', + version='0.6.14', 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 4b305d45..0376d36c 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, 13) +version_info = (0, 6, 14) __version__ = '.'.join(map(str, version_info))