Bump version

This commit is contained in:
Konsta Vesterinen
2014-03-05 12:50:14 +02:00
parent 10002232d1
commit 29b831b97a
4 changed files with 5 additions and 5 deletions

View File

@@ -3,13 +3,14 @@ Changelog
Here you can see the full list of changes between each SQLAlchemy-Utils release. 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 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 - Remove toolz from dependencies

View File

@@ -42,7 +42,7 @@ for name, requirements in extras_require.items():
setup( setup(
name='SQLAlchemy-Utils', name='SQLAlchemy-Utils',
version='0.24.2', version='0.24.3',
url='https://github.com/kvesteri/sqlalchemy-utils', url='https://github.com/kvesteri/sqlalchemy-utils',
license='BSD', license='BSD',
author='Konsta Vesterinen, Ryan Leckey, Janne Vanhala, Vesa Uimonen', author='Konsta Vesterinen, Ryan Leckey, Janne Vanhala, Vesa Uimonen',

View File

@@ -56,7 +56,7 @@ from .types import (
) )
__version__ = '0.24.2' __version__ = '0.24.3'
__all__ = ( __all__ = (

View File

@@ -179,7 +179,6 @@ def get_expr_attr(expr, attr_name):
return getattr(expr, attr_name) return getattr(expr, attr_name)
def declarative_base(model): def declarative_base(model):
""" """
Returns the declarative base for given model class. Returns the declarative base for given model class.