Bump the rev

This commit is contained in:
Gavin M. Roy 2015-05-14 16:00:40 -04:00
parent 380c9001ce
commit 88243478f9
2 changed files with 2 additions and 2 deletions

View file

@ -29,7 +29,7 @@ if sys.version_info < (3, 0):
setuptools.setup(
name='sprockets.mixins.postgresql',
version='1.0.0',
version='1.0.1',
description='A sprockets mixin that automatically connects to PostgreSQL',
long_description=codecs.open('README.rst', encoding='utf-8').read(),
url='https://github.com/sprockets/sprockets.mixins.postgresql.git',

View file

@ -21,7 +21,7 @@ where ``[VARIABLE]`` is one of ``HOST``, ``PORT``, ``DBNAME``, ``USER``, and
``PASSWORD``.
"""
version_info = (1, 0, 0)
version_info = (1, 0, 1)
__version__ = '.'.join(str(v) for v in version_info)
from sprockets.clients import postgresql