Bump version
This commit is contained in:
@@ -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
|
||||
|
2
setup.py
2
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',
|
||||
|
@@ -56,7 +56,7 @@ from .types import (
|
||||
)
|
||||
|
||||
|
||||
__version__ = '0.24.2'
|
||||
__version__ = '0.24.3'
|
||||
|
||||
|
||||
__all__ = (
|
||||
|
@@ -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.
|
||||
|
Reference in New Issue
Block a user