diff --git a/CHANGES.rst b/CHANGES.rst index bfeaee9..348c3f8 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.32.8 (2016-05-20) +^^^^^^^^^^^^^^^^^^^ + +- Fixed EmailType to respect constructor args (#230, pull request courtesy of quantus) + + 0.32.7 (2016-05-20) ^^^^^^^^^^^^^^^^^^^ diff --git a/sqlalchemy_utils/__init__.py b/sqlalchemy_utils/__init__.py index 223872c..d92470c 100644 --- a/sqlalchemy_utils/__init__.py +++ b/sqlalchemy_utils/__init__.py @@ -95,4 +95,4 @@ from .types import ( # noqa WeekDaysType ) -__version__ = '0.32.7' +__version__ = '0.32.8'