diff --git a/CHANGELOG.md b/CHANGELOG.md index 1caf1dd6..d594dcba 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,11 @@ ## 2.1.x (Unreleased) +## 2.2.0 (2022-11-15) + +- Bump thrift version to address https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-13949 +- Add support for lz4 compression + ## 2.1.0 (2022-09-30) - Introduce experimental OAuth support while Bring Your Own IDP is in Public Preview on AWS diff --git a/pyproject.toml b/pyproject.toml index b10fcb89..858d8732 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "databricks-sql-connector" -version = "2.1.0" +version = "2.2.0" description = "Databricks SQL Connector for Python" authors = ["Databricks "] license = "Apache-2.0" diff --git a/src/databricks/sql/__init__.py b/src/databricks/sql/__init__.py index 350238d3..d50ed250 100644 --- a/src/databricks/sql/__init__.py +++ b/src/databricks/sql/__init__.py @@ -28,7 +28,7 @@ def __repr__(self): DATE = DBAPITypeObject("date") ROWID = DBAPITypeObject() -__version__ = "2.1.0" +__version__ = "2.2.0" USER_AGENT_NAME = "PyDatabricksSqlConnector" # These two functions are pyhive legacy