Skip to content

Commit

Permalink
Bump version to 1.3.5, fix packaging (#531)
Browse files Browse the repository at this point in the history
  • Loading branch information
sitingren committed Sep 5, 2023
1 parent 95c0660 commit 1f05cc1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@
# version should use the format 'x.x.x' (instead of 'vx.x.x')
setup(
name='vertica-python',
version='1.3.4',
version='1.3.5',
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',
Expand Down
2 changes: 1 addition & 1 deletion vertica_python/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@
'OperationalError', 'ProgrammingError']

# The version number of this library.
version_info = (1, 3, 4)
version_info = (1, 3, 5)
__version__ = '.'.join(map(str, version_info))

# The protocol version (3.15) implemented in this library.
Expand Down

0 comments on commit 1f05cc1

Please sign in to comment.