Bump all the things

This commit is contained in:
Dan Tracy 2015-06-01 11:38:55 -04:00
parent 752d489437
commit 54f7eed014
3 changed files with 9 additions and 2 deletions

View file

@ -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)
------------------

View file

@ -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',

View file

@ -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'