diff --git a/DESCRIPTION.rst b/DESCRIPTION.rst index e705c2ac..de92d347 100644 --- a/DESCRIPTION.rst +++ b/DESCRIPTION.rst @@ -10,6 +10,10 @@ https://github.com/snowflakedb/snowflake-sqlalchemy Release Notes ------------------------------------------------------------------------------- +- v1.3.2 (September 14,2021) + + - Fixed a breaking change introduced in SQLAlchemy 1.4 that changed the behavior of returns_unicode_strings. + - v1.3.1 (July 23,2021) - Raising minimum version of SQLAlchemy to match used features. diff --git a/version.py b/version.py index 045f0e04..a8115745 100644 --- a/version.py +++ b/version.py @@ -1,3 +1,3 @@ # Update this for the versions # Don't change the forth version number from None -VERSION = (1, 3, 1, None) +VERSION = (1, 3, 2, None)