diff --git a/CHANGES.rst b/CHANGES.rst index b5aae09..e17439a 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -4,8 +4,14 @@ Changelog Here you can see the full list of changes between each SQLAlchemy-Utils release. +0.32.13 (2017-03-12) +^^^^^^^^^^^^^^^^^^^^ + +- Fixed a DeprecationWarning by using LargeBinary instead of Binary (#263, pull request courtesy of jacquerie) + + 0.32.12 (2016-12-18) -^^^^^^^^^^^^^^^^^^^ +^^^^^^^^^^^^^^^^^^^^ - Added generic_repr decorator diff --git a/sqlalchemy_utils/__init__.py b/sqlalchemy_utils/__init__.py index a7e3ede..92341fa 100644 --- a/sqlalchemy_utils/__init__.py +++ b/sqlalchemy_utils/__init__.py @@ -95,4 +95,4 @@ from .types import ( # noqa WeekDaysType ) -__version__ = '0.32.12' +__version__ = '0.32.13'