From 15e3cab6acf233aa9de86eab815fd17d7e6e97a6 Mon Sep 17 00:00:00 2001 From: Konsta Vesterinen Date: Tue, 17 Sep 2013 14:25:30 +0300 Subject: [PATCH] Bumped version --- CHANGES.rst | 9 ++++++++- setup.py | 2 +- sqlalchemy_utils/__init__.py | 2 +- 3 files changed, 10 insertions(+), 3 deletions(-) diff --git a/CHANGES.rst b/CHANGES.rst index c36f948..c46c565 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -4,10 +4,17 @@ Changelog 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) ^^^^^^^^^^^^^^^^^^^^ -- 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) diff --git a/setup.py b/setup.py index 35f84db..73018f1 100644 --- a/setup.py +++ b/setup.py @@ -56,7 +56,7 @@ for name, requirements in extras_require.items(): setup( name='SQLAlchemy-Utils', - version='0.16.13', + version='0.16.14', url='https://github.com/kvesteri/sqlalchemy-utils', license='BSD', author='Konsta Vesterinen, Ryan Leckey, Janne Vanhala, Vesa Uimonen', diff --git a/sqlalchemy_utils/__init__.py b/sqlalchemy_utils/__init__.py index 495e3ae..040ff54 100644 --- a/sqlalchemy_utils/__init__.py +++ b/sqlalchemy_utils/__init__.py @@ -38,7 +38,7 @@ from .types import ( ) -__version__ = '0.16.13' +__version__ = '0.16.14' __all__ = (