From 64c5fdd44e3372ef48c3cfb1381d52e11ca68a17 Mon Sep 17 00:00:00 2001 From: Konsta Vesterinen Date: Thu, 20 Oct 2016 10:14:56 +0300 Subject: [PATCH] Bump version --- CHANGES.rst | 7 +++++++ sqlalchemy_utils/__init__.py | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/CHANGES.rst b/CHANGES.rst index 6c3442c..86fb5e0 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.10 (2016-10-20) +^^^^^^^^^^^^^^^^^^^^ + +- Added PhoneNumber as the python_type for PhoneNumberType (#248) +- Made auto_delete_orphans support backref tuples (#234, pull request courtesy of vToMy) + + 0.32.9 (2016-07-17) ^^^^^^^^^^^^^^^^^^^ diff --git a/sqlalchemy_utils/__init__.py b/sqlalchemy_utils/__init__.py index a975fc0..8838487 100644 --- a/sqlalchemy_utils/__init__.py +++ b/sqlalchemy_utils/__init__.py @@ -95,4 +95,4 @@ from .types import ( # noqa WeekDaysType ) -__version__ = '0.32.9' +__version__ = '0.32.10'