diff --git a/CHANGELOG.md b/CHANGELOG.md index ddca22c2..611981cd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,12 @@ ## 2.4.x (Unreleased) +## 2.4.1 (2023-03-21) + +- Less strict numpy and pyarrow dependencies +- Update examples in README to use security best practices +- Update docstring for client.execute() for clarity + ## 2.4.0 (2023-02-21) - Improve compatibility when installed alongside other Databricks namespace Python packages diff --git a/pyproject.toml b/pyproject.toml index 72ed9b3a..a49f5778 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "databricks-sql-connector" -version = "2.4.0" +version = "2.4.1" 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 e8fa23e4..0eeee502 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.4.0" +__version__ = "2.4.1" USER_AGENT_NAME = "PyDatabricksSqlConnector" # These two functions are pyhive legacy