diff --git a/CHANGELOG.md b/CHANGELOG.md index b091b4250..b15ea5556 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,10 @@ ## 2.6.x (Unreleased) +## 2.6.2 (2023-06-14) + +- Fix: Retry GetOperationStatus requests for http errors + ## 2.6.1 (2023-06-08) - Fix: http.client would raise a BadStatusLine exception in some cases diff --git a/pyproject.toml b/pyproject.toml index 233c943c2..9d08a688f 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "databricks-sql-connector" -version = "2.6.1" +version = "2.6.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 7c43a02e5..6c7db4d5d 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.6.1" +__version__ = "2.6.2" USER_AGENT_NAME = "PyDatabricksSqlConnector" # These two functions are pyhive legacy