diff --git a/CHANGELOG.md b/CHANGELOG.md index f97b47c4..1c972ab6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,12 +1,13 @@ # Release History -# 3.0.4 (TBD) +# 3.1.0 (2024-02-16) -- Revert retry-after behavior to be exponential backoff +- Revert retry-after behavior to be exponential backoff (#349) +- Support Databricks OAuth on Azure (#351) +- Support Databricks OAuth on GCP (#338) # 3.0.3 (2024-02-02) -- Add support in-house OAuth on GCP (#338) - Revised docstrings and examples for OAuth (#339) - Redact the URL query parameters from the urllib3.connectionpool logs (#341) diff --git a/pyproject.toml b/pyproject.toml index 4a5b417e..784954fc 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "databricks-sql-connector" -version = "3.0.3" +version = "3.1.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 7a47d768..004250f6 100644 --- a/src/databricks/sql/__init__.py +++ b/src/databricks/sql/__init__.py @@ -62,7 +62,7 @@ def __repr__(self): DATE = DBAPITypeObject("date") ROWID = DBAPITypeObject() -__version__ = "3.0.3" +__version__ = "3.1.0" USER_AGENT_NAME = "PyDatabricksSqlConnector" # These two functions are pyhive legacy