Skip to content

Commit 6f83144

Browse files
author
Jesse
authored
Bump to version 2.5.2 (databricks#118)
Signed-off-by: Jesse Whitehouse <[email protected]>
1 parent 2eedcb2 commit 6f83144

File tree

3 files changed

+7
-2
lines changed

3 files changed

+7
-2
lines changed

CHANGELOG.md

+5
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,11 @@
22

33
## 2.5.x (Unreleased)
44

5+
## 2.5.2 (2023-05-08)
6+
7+
- Fix: SQLAlchemy adapter could not reflect TIMESTAMP or DATETIME columns
8+
- Other: Relax pandas and alembic dependency specifications
9+
510
## 2.5.1 (2023-04-28)
611

712
- Other: Relax sqlalchemy required version as it was unecessarily strict.

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "databricks-sql-connector"
3-
version = "2.5.1"
3+
version = "2.5.2"
44
description = "Databricks SQL Connector for Python"
55
authors = ["Databricks <[email protected]>"]
66
license = "Apache-2.0"

src/databricks/sql/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ def __repr__(self):
2828
DATE = DBAPITypeObject("date")
2929
ROWID = DBAPITypeObject()
3030

31-
__version__ = "2.5.1"
31+
__version__ = "2.5.2"
3232
USER_AGENT_NAME = "PyDatabricksSqlConnector"
3333

3434
# These two functions are pyhive legacy

0 commit comments

Comments
 (0)