Skip to content

Commit

Permalink
Bump version to 1.3.0, fix packaging (#489)
Browse files Browse the repository at this point in the history
  • Loading branch information
sitingren committed Feb 9, 2023
1 parent b432dd2 commit 60e8340
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 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.2.0',
version='1.3.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',
Expand Down
4 changes: 2 additions & 2 deletions vertica_python/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@

# Main module for this library.
__author__ = 'Vertica'
__copyright__ = 'Copyright (c) 2018-2022 Micro Focus or one of its affiliates.'
__copyright__ = 'Copyright (c) 2018-2023 Micro Focus or one of its affiliates.'
__license__ = 'Apache 2.0'

__all__ = ['Connection', 'PROTOCOL_VERSION', 'version_info', 'apilevel', 'threadsafety',
Expand All @@ -56,7 +56,7 @@
'OperationalError', 'ProgrammingError']

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

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

0 comments on commit 60e8340

Please sign in to comment.