mirror of
https://github.com/sprockets/sprockets.clients.postgresql.git
synced 2024-11-25 03:00:21 +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
|
Version History
|
||||||
---------------
|
---------------
|
||||||
|
- 2.0.1 [2014-11-14]
|
||||||
|
- Add db_url parameter to both session class initializers.
|
||||||
- 2.0.0 [2014-10-07]
|
- 2.0.0 [2014-10-07]
|
||||||
- Change the environment variable format to be URI based instead of a variable per host, port, dbname, etc.
|
- Change the environment variable format to be URI based instead of a variable per host, port, dbname, etc.
|
||||||
- 1.0.1 [2014-09-05]
|
- 1.0.1 [2014-09-05]
|
||||||
|
|
2
setup.py
2
setup.py
|
@ -4,7 +4,7 @@ import setuptools
|
||||||
|
|
||||||
setuptools.setup(
|
setuptools.setup(
|
||||||
name='sprockets.clients.postgresql',
|
name='sprockets.clients.postgresql',
|
||||||
version='2.0.0',
|
version='2.0.1',
|
||||||
description=('PostgreSQL client library wrapper providing environment '
|
description=('PostgreSQL client library wrapper providing environment '
|
||||||
'variable based configuration'),
|
'variable based configuration'),
|
||||||
long_description=codecs.open('README.rst', encoding='utf-8').read(),
|
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.
|
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)
|
__version__ = '.'.join(str(v) for v in version_info)
|
||||||
|
|
||||||
import logging
|
import logging
|
||||||
|
|
Loading…
Reference in a new issue