From 7e56243ff93992a26ffd861abafc3f96f60cc835 Mon Sep 17 00:00:00 2001 From: Ankit Bhatnagar Date: Mon, 25 Oct 2021 15:39:16 -0700 Subject: [PATCH] SNOW-481626: Bumped up PythonConnector MINOR version from 2.6.2 to 2.7.0 (#902) * SNOW-481626: Bumped up PythonConnector MINOR version from 2.6.2 to 2.7.0 (#901) --- DESCRIPTION.rst | 10 ++++++++++ src/snowflake/connector/version.py | 2 +- 2 files changed, 11 insertions(+), 1 deletion(-) diff --git a/DESCRIPTION.rst b/DESCRIPTION.rst index 56de37495..49dd5682d 100644 --- a/DESCRIPTION.rst +++ b/DESCRIPTION.rst @@ -10,6 +10,16 @@ Release Notes ------------------------------------------------------------------------------- +- v2.7.0(October 25,2021) + + - Removing cloud sdks.snowflake-connector-python will not install them anymore. Recreate your virtualenv to get rid of unnecessary dependencies. + - Include Standard C++ headers. + - Update minimum dependency version pin of cryptography. + - Fixed a bug where error number would not be added to Exception messages. + - Fixed a bug where client_prefetch_threads parameter was not respected when pre-fetching results. + - Update signature of SnowflakeCursor.execute's params argument. + + - v2.6.2(September 27,2021) - Updated vendored urllib3 and requests versions. diff --git a/src/snowflake/connector/version.py b/src/snowflake/connector/version.py index fb2861715..df246e4e8 100644 --- a/src/snowflake/connector/version.py +++ b/src/snowflake/connector/version.py @@ -1,3 +1,3 @@ # Update this for the versions # Don't change the forth version number from None -VERSION = (2, 6, 2, None) +VERSION = (2, 7, 0, None)