diff --git a/CHANGELOG.md b/CHANGELOG.md index aeaba174..953103a2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,13 @@ ## 2.0.x (Unreleased) +## 2.0.4 (2022-08-17) + +- Add support for Python 3.10 +- Add unit test matrix for supported Python versions + +Huge thanks to @dbaxa for contributing this change! + ## 2.0.3 (2022-08-05) - Add retry logic for `GetOperationStatus` requests that fail with an `OSError` diff --git a/pyproject.toml b/pyproject.toml index 29744deb..7d863ede 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "databricks-sql-connector" -version = "2.0.4-dev" +version = "2.0.4" 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 0523eb94..a937df7b 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.4-dev" +__version__ = "2.0.4" USER_AGENT_NAME = "PyDatabricksSqlConnector" # These two functions are pyhive legacy