From ef58c7a92e6b6ccbd7a63ee0df3123c8fa6cfcc8 Mon Sep 17 00:00:00 2001 From: sitingren Date: Fri, 19 Jul 2024 03:38:16 +0000 Subject: [PATCH] Bump version to 1.4.0, fix packaging --- setup.py | 2 +- vertica_python/__init__.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index 4790799d..648d16c7 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='1.3.8', + version='1.4.0', description='Official native Python client for the Vertica database.', long_description="vertica-python is the official Vertica database client for the Python programming language. Please check the [project homepage](https://github.com/vertica/vertica-python) for the details.", long_description_content_type='text/markdown', diff --git a/vertica_python/__init__.py b/vertica_python/__init__.py index 3263d89b..53584608 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 = (1, 3, 8) +version_info = (1, 4, 0) __version__ = '.'.join(map(str, version_info)) # The protocol version (3.16) implemented in this library.