From c5b20535fd21fa0cce8eda056406f8f5839e9732 Mon Sep 17 00:00:00 2001 From: Konsta Vesterinen Date: Wed, 20 Apr 2016 15:33:48 +0300 Subject: [PATCH] Bump version --- CHANGES.rst | 10 ++++++++-- sqlalchemy_utils/__init__.py | 2 +- 2 files changed, 9 insertions(+), 3 deletions(-) diff --git a/CHANGES.rst b/CHANGES.rst index ccf738f..c1cf89c 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -4,11 +4,17 @@ Changelog Here you can see the full list of changes between each SQLAlchemy-Utils release. +0.32.2 (2016-04-20) +^^^^^^^^^^^^^^^^^^^ + +- Fixed PasswordType to not access LazyCryptContext on type init (#211, pull request courtesy of olegpidsadnyi) + + 0.32.1 (2016-03-30) ^^^^^^^^^^^^^^^^^^^ -- Fix database helpers for sqlite (#208, pull request courtesy of RobertDeRose) -- Fix TranslationHybrid aliased entities handling (#198, pull request courtesy of jmagnusson) +- Fixed database helpers for sqlite (#208, pull request courtesy of RobertDeRose) +- Fixed TranslationHybrid aliased entities handling (#198, pull request courtesy of jmagnusson) 0.32.0 (2016-03-17) diff --git a/sqlalchemy_utils/__init__.py b/sqlalchemy_utils/__init__.py index 83c24fe..436eff8 100644 --- a/sqlalchemy_utils/__init__.py +++ b/sqlalchemy_utils/__init__.py @@ -93,4 +93,4 @@ from .types import ( # noqa WeekDaysType ) -__version__ = '0.32.1' +__version__ = '0.32.2'