Bump version to 2.0.1.

This commit is contained in:
Dave Shawley 2014-11-14 08:14:46 -05:00
parent 4e47fce5c7
commit 233e1e1295
3 changed files with 4 additions and 2 deletions

View file

@ -1,5 +1,7 @@
Version History
---------------
- 2.0.1 [2014-11-14]
- Add db_url parameter to both session class initializers.
- 2.0.0 [2014-10-07]
- Change the environment variable format to be URI based instead of a variable per host, port, dbname, etc.
- 1.0.1 [2014-09-05]

View file

@ -4,7 +4,7 @@ import setuptools
setuptools.setup(
name='sprockets.clients.postgresql',
version='2.0.0',
version='2.0.1',
description=('PostgreSQL client library wrapper providing environment '
'variable based configuration'),
long_description=codecs.open('README.rst', encoding='utf-8').read(),

View file

@ -30,7 +30,7 @@ running on ``foohost``, port ``6000`` using the username ``bar`` and the
password ``baz``, connecting to the ``foo`` database.
"""
version_info = (2, 0, 0)
version_info = (2, 0, 1)
__version__ = '.'.join(str(v) for v in version_info)
import logging