From 54f7eed0142cbca23773181d890c85420715f0ea Mon Sep 17 00:00:00 2001 From: Dan Tracy Date: Mon, 1 Jun 2015 11:38:55 -0400 Subject: [PATCH] Bump all the things --- HISTORY.rst | 6 ++++++ setup.py | 3 ++- sprockets/clients/cassandra/__init__.py | 2 +- 3 files changed, 9 insertions(+), 2 deletions(-) diff --git a/HISTORY.rst b/HISTORY.rst index 9886776..a7a4fe7 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -3,6 +3,12 @@ Release History =============== +0.1.0 (2015-06-01) +------------------ + +- Allow providing the port as part of the URI. + + 0.0.1 (2015-05-12) ------------------ diff --git a/setup.py b/setup.py index 7ed9eb0..28b029c 100755 --- a/setup.py +++ b/setup.py @@ -4,6 +4,7 @@ import sys import setuptools + def read_requirements_file(req_name): requirements = [] try: @@ -25,7 +26,7 @@ tests_require = read_requirements_file('test-requirements.txt') setuptools.setup( name='sprockets.clients.cassandra', - version='0.0.1', + version='0.1.0', description='Base functionality for accessing/modifying data in Cassandra', long_description=codecs.open('README.rst', encoding='utf-8').read(), url='https://github.com/sprockets/sprockets.clients.cassandra.git', diff --git a/sprockets/clients/cassandra/__init__.py b/sprockets/clients/cassandra/__init__.py index 455b230..5785956 100644 --- a/sprockets/clients/cassandra/__init__.py +++ b/sprockets/clients/cassandra/__init__.py @@ -17,7 +17,7 @@ try: except: from urlparse import urlsplit -version_info = (0, 0, 1) +version_info = (0, 1, 0) __version__ = '.'.join(str(v) for v in version_info) DEFAULT_URI = 'cassandra://localhost:9042'