From 87c48cc4ff6863ebab818657d0c10dbe468304a9 Mon Sep 17 00:00:00 2001 From: Jorge Vasquez Rojas Date: Mon, 13 Jan 2025 15:52:35 -0600 Subject: [PATCH] Update DESCRIPTION.md (#573) --- DESCRIPTION.md | 4 ++-- src/snowflake/sqlalchemy/version.py | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/DESCRIPTION.md b/DESCRIPTION.md index ee903263..1fab870e 100644 --- a/DESCRIPTION.md +++ b/DESCRIPTION.md @@ -8,12 +8,12 @@ Source code is also available at: # Release Notes -- (Unreleased) +- v1.7.3(January 15, 2025) - Fix support for SqlAlchemy ARRAY. - Fix return value of snowflake get_table_names. - Fix incorrect quoting of identifiers with `_` as initial character. - Fix ARRAY type not supported in HYBRID tables. - - Added `force_div_is_floordiv` flag to override `div_is_floordiv` new default value `False` in `SnowflakeDialect`. + - Add `force_div_is_floordiv` flag to override `div_is_floordiv` new default value `False` in `SnowflakeDialect`. - With the flag in `False`, the `/` division operator will be treated as a float division and `//` as a floor division. - This flag is added to maintain backward compatibility with the previous behavior of Snowflake Dialect division. - This flag will be removed in the future and Snowflake Dialect will use `div_is_floor_div` as `False`. diff --git a/src/snowflake/sqlalchemy/version.py b/src/snowflake/sqlalchemy/version.py index e54f6a9c..5d3937ad 100644 --- a/src/snowflake/sqlalchemy/version.py +++ b/src/snowflake/sqlalchemy/version.py @@ -3,4 +3,4 @@ # # Update this for the versions # Don't change the forth version number from None -VERSION = "1.7.2" +VERSION = "1.7.3"