diff --git a/CHANGES.rst b/CHANGES.rst index 96e8562..2c0bffe 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.6 (2016-05-11) +^^^^^^^^^^^^^^^^^^^ + +- Added support for timezones with ArrowType (#218, pull request courtesy of jmagnusson) + + 0.32.5 (2016-04-29) ^^^^^^^^^^^^^^^^^^^ diff --git a/sqlalchemy_utils/__init__.py b/sqlalchemy_utils/__init__.py index f2be716..7529efc 100644 --- a/sqlalchemy_utils/__init__.py +++ b/sqlalchemy_utils/__init__.py @@ -94,4 +94,4 @@ from .types import ( # noqa WeekDaysType ) -__version__ = '0.32.5' +__version__ = '0.32.6'