Skip to content

Commit 60e8340

Browse files
author
Siting Ren
authored
Bump version to 1.3.0, fix packaging (#489)
1 parent b432dd2 commit 60e8340

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@
4545
# version should use the format 'x.x.x' (instead of 'vx.x.x')
4646
setup(
4747
name='vertica-python',
48-
version='1.2.0',
48+
version='1.3.0',
4949
description='Official native Python client for the Vertica database.',
5050
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.",
5151
long_description_content_type='text/markdown',

vertica_python/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@
4747

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

5353
__all__ = ['Connection', 'PROTOCOL_VERSION', 'version_info', 'apilevel', 'threadsafety',
@@ -56,7 +56,7 @@
5656
'OperationalError', 'ProgrammingError']
5757

5858
# The version number of this library.
59-
version_info = (1, 2, 0)
59+
version_info = (1, 3, 0)
6060
__version__ = '.'.join(map(str, version_info))
6161

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

0 commit comments

Comments
 (0)