diff --git a/CHANGES.rst b/CHANGES.rst index 6d7ffdc..e996cdd 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -3,13 +3,14 @@ Changelog Here you can see the full list of changes between each SQLAlchemy-Utils release. -0.24.3 (2014-02-xx) +0.24.3 (2014-02-05) ^^^^^^^^^^^^^^^^^^^ - Added string argument support for generic_relationship +- Added composite primary key support for generic_relationship -0.24.2 (2014-03-05) +0.24.2 (2014-03-04) ^^^^^^^^^^^^^^^^^^^ - Remove toolz from dependencies diff --git a/setup.py b/setup.py index 5f5497a..b9af13a 100644 --- a/setup.py +++ b/setup.py @@ -42,7 +42,7 @@ for name, requirements in extras_require.items(): setup( name='SQLAlchemy-Utils', - version='0.24.2', + version='0.24.3', 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 88aa12f..d3afb84 100644 --- a/sqlalchemy_utils/__init__.py +++ b/sqlalchemy_utils/__init__.py @@ -56,7 +56,7 @@ from .types import ( ) -__version__ = '0.24.2' +__version__ = '0.24.3' __all__ = ( diff --git a/sqlalchemy_utils/functions/orm.py b/sqlalchemy_utils/functions/orm.py index e7f4edd..b35d7e2 100644 --- a/sqlalchemy_utils/functions/orm.py +++ b/sqlalchemy_utils/functions/orm.py @@ -179,7 +179,6 @@ def get_expr_attr(expr, attr_name): return getattr(expr, attr_name) - def declarative_base(model): """ Returns the declarative base for given model class.