diff --git a/CHANGELOG.md b/CHANGELOG.md index 10777919e..a40a47d57 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,10 @@ # Release History -## 2.2.x (Unreleased) +## 2.3.x (Unreleased) + +## 2.3.0 (2023-01-10) + +- Support staging ingestion commands for DBR 12+ ## 2.2.2 (2023-01-03) diff --git a/pyproject.toml b/pyproject.toml index 29f460395..4de252714 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "databricks-sql-connector" -version = "2.2.2" +version = "2.3.0" 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 f29a6435a..0a5d88184 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.2.2" +__version__ = "2.3.0" USER_AGENT_NAME = "PyDatabricksSqlConnector" # These two functions are pyhive legacy