Skip to content

Commit

Permalink
Bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
zer0n committed Apr 30, 2015
1 parent 932fe36 commit 89b60a6
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

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

0.4.0 breaks some of the older query interfaces (row_handler callback, and connection.query).
0.4.2 breaks some of the older query interfaces (row_handler callback, and connection.query).
It replaces the row_handler callback with an iterate() method. Please see examples below

vertica-python is a native Python adapter for the Vertica (http://www.vertica.com) database.
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

setup(
name='vertica-python',
version='0.4.1',
version='0.4.2',
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, 4, 1)
version_info = (0, 4, 2)
__version__ = '.'.join(map(str, version_info))

__author__ = 'Uber Technologies, Inc'
Expand Down

0 comments on commit 89b60a6

Please sign in to comment.