diff --git a/CHANGELOG.md b/CHANGELOG.md index 953103a2c..aeb78efe9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,11 @@ ## 2.0.x (Unreleased) +## 2.0.5 (2022-08-23) + +- Fix: closing a connection now closes any open cursors from that connection at the server +- Other: Add project links to pyproject.toml (helpful for visitors from PyPi) + ## 2.0.4 (2022-08-17) - Add support for Python 3.10 diff --git a/pyproject.toml b/pyproject.toml index 11f82d398..4aa3823ff 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "databricks-sql-connector" -version = "2.0.5-dev" +version = "2.0.5" 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 b6eb76e9c..cac42a3ef 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.5-dev" +__version__ = "2.0.5" USER_AGENT_NAME = "PyDatabricksSqlConnector" # These two functions are pyhive legacy