diff --git a/DESCRIPTION.rst b/DESCRIPTION.rst index de92d347..b154f52f 100644 --- a/DESCRIPTION.rst +++ b/DESCRIPTION.rst @@ -10,6 +10,10 @@ https://github.com/snowflakedb/snowflake-sqlalchemy Release Notes ------------------------------------------------------------------------------- +- v1.3.3(December 19,2021) + + - Fixed an issue where quote arguments were stripped from identifiers. + - v1.3.2 (September 14,2021) - Fixed a breaking change introduced in SQLAlchemy 1.4 that changed the behavior of returns_unicode_strings. diff --git a/version.py b/version.py index a8115745..3e99a19f 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, 2, None) +VERSION = (1, 3, 3, None)