diff --git a/CHANGES.rst b/CHANGES.rst index a8f98ae..8e85aaa 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -3,6 +3,14 @@ Changelog Here you can see the full list of changes between each SQLAlchemy-Utils release. + +0.16.7 (2013-08-18) +^^^^^^^^^^^^^^^^^^^ + +- Added better handling of local column names in batch_fetch +- PasswordType gets default length even if no crypt context schemes provided + + 0.16.6 (2013-08-16) ^^^^^^^^^^^^^^^^^^^ diff --git a/setup.py b/setup.py index b302acc..960b7a7 100644 --- a/setup.py +++ b/setup.py @@ -55,7 +55,7 @@ for name, requirements in extras_require.items(): setup( name='SQLAlchemy-Utils', - version='0.16.6', + version='0.16.7', url='https://github.com/kvesteri/sqlalchemy-utils', license='BSD', author='Konsta Vesterinen', diff --git a/sqlalchemy_utils/__init__.py b/sqlalchemy_utils/__init__.py index bb56817..42ca103 100644 --- a/sqlalchemy_utils/__init__.py +++ b/sqlalchemy_utils/__init__.py @@ -37,7 +37,7 @@ from .types import ( ) -__version__ = '0.16.6' +__version__ = '0.16.7' __all__ = (