Bumped version

This commit is contained in:
Konsta Vesterinen
2013-09-17 14:25:30 +03:00
parent 8a7d7083a7
commit 15e3cab6ac
3 changed files with 10 additions and 3 deletions

View File

@@ -4,10 +4,17 @@ Changelog
Here you can see the full list of changes between each SQLAlchemy-Utils release. Here you can see the full list of changes between each SQLAlchemy-Utils release.
0.16.14 (2013-09-17)
^^^^^^^^^^^^^^^^^^^^
- More pythonic __init__ for Country allowing Country(Country('fi')) == Country('fi')
- Better equality operator for Country
0.16.13 (2013-09-17) 0.16.13 (2013-09-17)
^^^^^^^^^^^^^^^^^^^^ ^^^^^^^^^^^^^^^^^^^^
- Added global i18n module for configuration of locale dependant types - Added i18n module for configuration of locale dependant types
0.16.12 (2013-09-17) 0.16.12 (2013-09-17)

View File

@@ -56,7 +56,7 @@ for name, requirements in extras_require.items():
setup( setup(
name='SQLAlchemy-Utils', name='SQLAlchemy-Utils',
version='0.16.13', version='0.16.14',
url='https://github.com/kvesteri/sqlalchemy-utils', url='https://github.com/kvesteri/sqlalchemy-utils',
license='BSD', license='BSD',
author='Konsta Vesterinen, Ryan Leckey, Janne Vanhala, Vesa Uimonen', author='Konsta Vesterinen, Ryan Leckey, Janne Vanhala, Vesa Uimonen',

View File

@@ -38,7 +38,7 @@ from .types import (
) )
__version__ = '0.16.13' __version__ = '0.16.14'
__all__ = ( __all__ = (