diff --git a/CHANGELOG.md b/CHANGELOG.md index 0c76f11d..30a060d6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,8 @@ # Release History -## 2.8.x (Unreleased) +## 2.10.x (Unreleased) + +## 2.9.0 (2023-08-10) - Replace retry handling with DatabricksRetryPolicy. This is disabled by default. To enable, set `enable_v3_retries=True` when creating `databricks.sql.client` - Other: Fix typo in README quick start example @@ -8,7 +10,7 @@ ## 2.8.0 (2023-07-21) -- Add support for Cloud Fetch (#146, #151, #154) +- Add support for Cloud Fetch. Disabled by default. Set `use_cloud_fetch=True` when building `databricks.sql.client` to enable it (#146, #151, #154) - SQLAlchemy has_table function now honours schema= argument and adds catalog= argument (#174) - SQLAlchemy set non_native_boolean_check_constraint False as it's not supported by Databricks (#120) - Fix: Revised SQLAlchemy dialect and examples for compatibility with SQLAlchemy==1.3.x (#173) diff --git a/pyproject.toml b/pyproject.toml index 8d89ba2d..90db58d9 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "databricks-sql-connector" -version = "2.8.0" +version = "2.9.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 f9a49281..c55d17ca 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.8.0" +__version__ = "2.9.0" USER_AGENT_NAME = "PyDatabricksSqlConnector" # These two functions are pyhive legacy