diff --git a/CHANGES.rst b/CHANGES.rst index b4eef44..4086779 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -4,6 +4,12 @@ Changelog Here you can see the full list of changes between each SQLAlchemy-Utils release. +0.16.20 (2013-09-26) +^^^^^^^^^^^^^^^^^^^^ + +- Fixed an issue with sort_query where sort by main entity's attribute would fail if joins where applied. + + 0.16.19 (2013-09-21) ^^^^^^^^^^^^^^^^^^^^ diff --git a/setup.py b/setup.py index b50dc1b..5a36ae8 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.19', + version='0.16.20', 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 838f3c1..bb4b3ec 100644 --- a/sqlalchemy_utils/__init__.py +++ b/sqlalchemy_utils/__init__.py @@ -38,7 +38,7 @@ from .types import ( ) -__version__ = '0.16.19' +__version__ = '0.16.20' __all__ = (