From 0ebd4e5fb0452d1102e308e742e310b63d010eb2 Mon Sep 17 00:00:00 2001 From: Siting Ren Date: Tue, 8 Sep 2020 15:18:10 +0800 Subject: [PATCH] Bump version to 1.0.0, fix packaging (#396) --- setup.py | 2 +- vertica_python/__init__.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index 329d5c64..d11ce35a 100644 --- a/setup.py +++ b/setup.py @@ -45,7 +45,7 @@ # version should use the format 'x.x.x' (instead of 'vx.x.x') setup( name='vertica-python', - version='0.11.0', + version='1.0.0', description='A native Python client for the Vertica database.', author='Justin Berka, Alex Kim, Siting Ren', author_email='justin.berka@gmail.com, alex.kim@uber.com, sitingren@hotmail.com', diff --git a/vertica_python/__init__.py b/vertica_python/__init__.py index 9eb03e9b..98f3d79b 100644 --- a/vertica_python/__init__.py +++ b/vertica_python/__init__.py @@ -56,7 +56,7 @@ 'OperationalError', 'ProgrammingError'] # The version number of this library. -version_info = (0, 11, 0) +version_info = (1, 0, 0) __version__ = '.'.join(map(str, version_info)) # The protocol version (3.8) implemented in this library.