From 54a61026ce2bc6c983fbc1dfab0fa7c881ab271f Mon Sep 17 00:00:00 2001 From: Jesse Date: Fri, 18 Aug 2023 08:02:56 -0400 Subject: [PATCH] Bump version to 2.9.2 (#201) Signed-off-by: Jesse Whitehouse --- CHANGELOG.md | 2 ++ pyproject.toml | 2 +- src/databricks/sql/__init__.py | 2 +- 3 files changed, 4 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e14d4700..7f9ea9d9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,8 @@ ## 2.9.x (Unreleased) +## 2.9.2 (2023-08-17) + - Other: Add `examples/v3_retries_query_execute.py` - Other: suppress log message when `_enable_v3_retries` is not `True` - Other: make this connector backwards compatible with `urllib3>=1.0.0` diff --git a/pyproject.toml b/pyproject.toml index f3c16509..cf5a13de 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "databricks-sql-connector" -version = "2.9.1" +version = "2.9.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 0be19d5b..6af6d227 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.9.1" +__version__ = "2.9.2" USER_AGENT_NAME = "PyDatabricksSqlConnector" # These two functions are pyhive legacy