diff --git a/CHANGES.rst b/CHANGES.rst index 6274b21..cf4faa0 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -4,10 +4,11 @@ Changelog Here you can see the full list of changes between each SQLAlchemy-Utils release. -0.25.x (2014-xx-xx) +0.25.1 (2014-03-20) ^^^^^^^^^^^^^^^^^^^ - Added more import json as a fallback if anyjson package is not installed for JSONType +- Fixed query_entities labeled select handling 0.25.0 (2014-03-05) diff --git a/setup.py b/setup.py index 618bd9e..ff61649 100644 --- a/setup.py +++ b/setup.py @@ -42,7 +42,7 @@ for name, requirements in extras_require.items(): setup( name='SQLAlchemy-Utils', - version='0.25.0', + version='0.25.1', 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 55315a3..3ec1501 100644 --- a/sqlalchemy_utils/__init__.py +++ b/sqlalchemy_utils/__init__.py @@ -56,7 +56,7 @@ from .types import ( ) -__version__ = '0.25.0' +__version__ = '0.25.1' __all__ = (