diff --git a/DESCRIPTION.md b/DESCRIPTION.md index 245c20a0c..6824675de 100644 --- a/DESCRIPTION.md +++ b/DESCRIPTION.md @@ -9,10 +9,12 @@ Source code is also available at: https://github.com/snowflakedb/snowflake-conne # Release Notes -- v2.7.10(Unreleased) +- v2.7.10(July 22,2022) - Release wheels are now built on manylinux2014 - Bumped supported pyarrow version to >=8.0.0,<8.1.0 + - Updated vendored library versions requests to 2.28.1 and urllib3 to 1.26.10 + - Added in-memory cache to OCSP requests - Added overwrite option to write_pandas - Added attribute `lastrowid` to `SnowflakeCursor` in compliance with PEP249. - Fixed a bug where gzip compressed http requests might be garbled by an unflushed buffer diff --git a/src/snowflake/connector/version.py b/src/snowflake/connector/version.py index 225926b24..4dbc22655 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, 7, 9, None) +VERSION = (2, 7, 10, None)