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,