diff --git a/CHANGES.rst b/CHANGES.rst index be0930d..0d1d3a7 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -4,8 +4,14 @@ Changelog Here you can see the full list of changes between each SQLAlchemy-Utils release. +0.26.11 (2014-08-21) +^^^^^^^^^^^^^^^^^^^^ + +- Fixed dependent_objects support for single table inheritance + + 0.26.10 (2014-08-13) -^^^^^^^^^^^^^^^^^^^ +^^^^^^^^^^^^^^^^^^^^ - Fixed dependent_objects support for multiple dependencies diff --git a/setup.py b/setup.py index 182075b..97d9c85 100644 --- a/setup.py +++ b/setup.py @@ -44,7 +44,7 @@ for name, requirements in extras_require.items(): setup( name='SQLAlchemy-Utils', - version='0.26.10', + version='0.26.11', 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 fc5734e..af701c5 100644 --- a/sqlalchemy_utils/__init__.py +++ b/sqlalchemy_utils/__init__.py @@ -75,7 +75,7 @@ from .types import ( from .models import Timestamp -__version__ = '0.26.10' +__version__ = '0.26.11' __all__ = (