diff --git a/CHANGES.rst b/CHANGES.rst index fc96def..21db1cf 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -4,6 +4,13 @@ Changelog Here you can see the full list of changes between each SQLAlchemy-Utils release. +0.26.6 (2014-07-22) +^^^^^^^^^^^^^^^^^^^ + +- Added exclude parameter to has_changes +- Made has_changes accept multiple attributes as second parameter + + 0.26.5 (2014-07-11) ^^^^^^^^^^^^^^^^^^^ diff --git a/setup.py b/setup.py index ba82747..102ce87 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.5', + version='0.26.6', 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 11e1e99..90614d1 100644 --- a/sqlalchemy_utils/__init__.py +++ b/sqlalchemy_utils/__init__.py @@ -73,7 +73,7 @@ from .types import ( from .models import Timestamp -__version__ = '0.26.5' +__version__ = '0.26.6' __all__ = (