mirror of
https://github.com/sprockets/sprockets.clients.postgresql.git
synced 2024-11-21 19:28:38 +00:00
Bump version to 2.0.1.
This commit is contained in:
parent
4e47fce5c7
commit
233e1e1295
3 changed files with 4 additions and 2 deletions
|
@ -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]
|
||||
|
|
2
setup.py
2
setup.py
|
@ -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(),
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue