diff --git a/CHANGELOG.md b/CHANGELOG.md index 606eeeb78..d424c7b38 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,11 @@ ## 2.5.x (Unreleased) +## 2.5.2 (2023-05-08) + +- Fix: SQLAlchemy adapter could not reflect TIMESTAMP or DATETIME columns +- Other: Relax pandas and alembic dependency specifications + ## 2.5.1 (2023-04-28) - Other: Relax sqlalchemy required version as it was unecessarily strict. diff --git a/pyproject.toml b/pyproject.toml index 7cb09571c..e93dcd1b7 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "databricks-sql-connector" -version = "2.5.1" +version = "2.5.2" 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 48ab3b1ee..fdfb3fb67 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.5.1" +__version__ = "2.5.2" USER_AGENT_NAME = "PyDatabricksSqlConnector" # These two functions are pyhive legacy