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'