diff --git a/CHANGELOG.md b/CHANGELOG.md index 2730415a..aeaba174 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,7 +1,10 @@ # Release History -## 2.x.x (Unreleased) +## 2.0.x (Unreleased) +## 2.0.3 (2022-08-05) + +- Add retry logic for `GetOperationStatus` requests that fail with an `OSError` - Reorganised code to use Poetry for dependency management. ## 2.0.2 (2022-05-04) - Better exception handling in automatic connection close diff --git a/pyproject.toml b/pyproject.toml index de9160de..ac211b9d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "databricks-sql-connector" -version = "2.0.2" +version = "2.0.3" 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 8f67d465..f1d979f6 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.0.2" +__version__ = "2.0.3" USER_AGENT_NAME = "PyDatabricksSqlConnector" # These two functions are pyhive legacy