diff --git a/CHANGES.rst b/CHANGES.rst index a8f9344..fe1f173 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -4,6 +4,12 @@ Changelog Here you can see the full list of changes between each SQLAlchemy-Utils release. +0.26.14 (2014-08-26) +^^^^^^^^^^^^^^^^^^^^ + +- Added count method to QueryChain class + + 0.26.13 (2014-08-23) ^^^^^^^^^^^^^^^^^^^^ diff --git a/setup.py b/setup.py index a5894aa..06b4b88 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.13', + version='0.26.14', 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 45a56f6..be5601d 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.13' +__version__ = '0.26.14' __all__ = (