From 89b60a6e91ae056fdc42122120196407ad28bf0a Mon Sep 17 00:00:00 2001 From: Kenneth Tran Date: Wed, 29 Apr 2015 22:14:18 -0700 Subject: [PATCH] Bump version --- README.md | 2 +- setup.py | 2 +- vertica_python/__init__.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index a2546a88..49915d5b 100644 --- a/README.md +++ b/README.md @@ -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. diff --git a/setup.py b/setup.py index 3a15a573..5fb9e276 100644 --- a/setup.py +++ b/setup.py @@ -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='justin.berka@gmail.com, alex.kim@uber.com, tran@uber.com', diff --git a/vertica_python/__init__.py b/vertica_python/__init__.py index a61357c5..76b23c71 100644 --- a/vertica_python/__init__.py +++ b/vertica_python/__init__.py @@ -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'