diff --git a/CHANGES.rst b/CHANGES.rst index 86fb5e0..f008ac1 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.32.11 (2016-11-19) +^^^^^^^^^^^^^^^^^^^^ + +- TimeZoneType support for static timezones (#244, pull request courtesy of fuhrysteve) +- Added SQLite support for PasswordType (#254, pull request courtesy of frol) + + 0.32.10 (2016-10-20) ^^^^^^^^^^^^^^^^^^^^ diff --git a/sqlalchemy_utils/__init__.py b/sqlalchemy_utils/__init__.py index 8838487..93d9e9c 100644 --- a/sqlalchemy_utils/__init__.py +++ b/sqlalchemy_utils/__init__.py @@ -95,4 +95,4 @@ from .types import ( # noqa WeekDaysType ) -__version__ = '0.32.10' +__version__ = '0.32.11'