From 9bc141c1ab256309321f2c238efd8774ad8f01c3 Mon Sep 17 00:00:00 2001 From: Konsta Vesterinen Date: Tue, 22 Apr 2014 13:04:16 +0300 Subject: [PATCH] Bump version --- setup.py | 2 +- sqlalchemy_utils/__init__.py | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index 1fb8631..58f9513 100644 --- a/setup.py +++ b/setup.py @@ -44,7 +44,7 @@ for name, requirements in extras_require.items(): setup( name='SQLAlchemy-Utils', - version='0.25.3', + version='0.25.4', 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 d302a87..0a4354c 100644 --- a/sqlalchemy_utils/__init__.py +++ b/sqlalchemy_utils/__init__.py @@ -60,7 +60,7 @@ from .types import ( ) -__version__ = '0.25.3' +__version__ = '0.25.4' __all__ = ( @@ -100,6 +100,7 @@ __all__ = ( DateRangeType, DateTimeRangeType, EmailType, + ExpressionParser, ImproperlyConfigured, InstrumentedList, IntRangeType,