Skip to content

Commit

Permalink
bump to version 0.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Alex Kim committed Apr 28, 2016
1 parent 9f18f23 commit 7035da6
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

[![PyPI version](https://badge.fury.io/py/vertica-python.png)](http://badge.fury.io/py/vertica-python)

0.6.x adds python3 support

0.5.x changes the connection method to accept kwargs instead of a dict to be more dbapi compliant.
copy methods improved and consolidated in 0.5.1

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
# version should use the format 'x.x.x' (instead of 'vx.x.x')
setup(
name='vertica-python',
version='0.5.8',
version='0.6.0',
description='A native Python client for the Vertica database.',
author='Justin Berka, Alex Kim, Kenneth Tran',
author_email='[email protected], [email protected], [email protected]',
Expand Down
2 changes: 1 addition & 1 deletion vertica_python/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
# Main module for this library.

# The version number of this library.
version_info = (0, 5, 8)
version_info = (0, 6, 0)

__version__ = '.'.join(map(str, version_info))

Expand Down

0 comments on commit 7035da6

Please sign in to comment.