mirror of
https://github.com/sprockets/sprockets.clients.cassandra.git
synced 2024-11-21 19:28:36 +00:00
Bump all the things
This commit is contained in:
parent
752d489437
commit
54f7eed014
3 changed files with 9 additions and 2 deletions
|
@ -3,6 +3,12 @@
|
||||||
Release History
|
Release History
|
||||||
===============
|
===============
|
||||||
|
|
||||||
|
0.1.0 (2015-06-01)
|
||||||
|
------------------
|
||||||
|
|
||||||
|
- Allow providing the port as part of the URI.
|
||||||
|
|
||||||
|
|
||||||
0.0.1 (2015-05-12)
|
0.0.1 (2015-05-12)
|
||||||
------------------
|
------------------
|
||||||
|
|
||||||
|
|
3
setup.py
3
setup.py
|
@ -4,6 +4,7 @@ import sys
|
||||||
|
|
||||||
import setuptools
|
import setuptools
|
||||||
|
|
||||||
|
|
||||||
def read_requirements_file(req_name):
|
def read_requirements_file(req_name):
|
||||||
requirements = []
|
requirements = []
|
||||||
try:
|
try:
|
||||||
|
@ -25,7 +26,7 @@ tests_require = read_requirements_file('test-requirements.txt')
|
||||||
|
|
||||||
setuptools.setup(
|
setuptools.setup(
|
||||||
name='sprockets.clients.cassandra',
|
name='sprockets.clients.cassandra',
|
||||||
version='0.0.1',
|
version='0.1.0',
|
||||||
description='Base functionality for accessing/modifying data in Cassandra',
|
description='Base functionality for accessing/modifying data in Cassandra',
|
||||||
long_description=codecs.open('README.rst', encoding='utf-8').read(),
|
long_description=codecs.open('README.rst', encoding='utf-8').read(),
|
||||||
url='https://github.com/sprockets/sprockets.clients.cassandra.git',
|
url='https://github.com/sprockets/sprockets.clients.cassandra.git',
|
||||||
|
|
|
@ -17,7 +17,7 @@ try:
|
||||||
except:
|
except:
|
||||||
from urlparse import urlsplit
|
from urlparse import urlsplit
|
||||||
|
|
||||||
version_info = (0, 0, 1)
|
version_info = (0, 1, 0)
|
||||||
__version__ = '.'.join(str(v) for v in version_info)
|
__version__ = '.'.join(str(v) for v in version_info)
|
||||||
|
|
||||||
DEFAULT_URI = 'cassandra://localhost:9042'
|
DEFAULT_URI = 'cassandra://localhost:9042'
|
||||||
|
|
Loading…
Reference in a new issue