diff --git a/CHANGELOG.md b/CHANGELOG.md index fbb8d56bb..10777919e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,11 @@ # Release History -## 2.1.x (Unreleased) +## 2.2.x (Unreleased) + +## 2.2.2 (2023-01-03) + +- Support custom oauth client id and redirect port +- Fix: Add none check on _oauth_persistence in DatabricksOAuthProvider ## 2.2.1 (2022-11-29) diff --git a/pyproject.toml b/pyproject.toml index 294f7ea85..29f460395 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "databricks-sql-connector" -version = "2.2.1" +version = "2.2.2" 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 6c64d31ec..f29a6435a 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.2.1" +__version__ = "2.2.2" USER_AGENT_NAME = "PyDatabricksSqlConnector" # These two functions are pyhive legacy