Skip to content

Commit 62eb1d4

Browse files
author
Jesse
authored
Prepared 3.0.1 release (#297)
Signed-off-by: Jesse Whitehouse <[email protected]>
1 parent 2a68448 commit 62eb1d4

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

CHANGELOG.md

+4-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,10 @@
11
# Release History
22

3-
## 3.0.1 (unreleased)
3+
## 3.0.1 (2023-12-01)
44

5+
- Other: updated docstring comment about default parameterization approach (#287)
6+
- Other: added tests for reading complex types and revised docstrings and type hints (#293)
7+
- Fix: SQLAlchemy dialect raised DeprecationWarning due to `dbapi` classmethod (#294)
58
- Fix: SQLAlchemy dialect could not reflect TIMESTAMP_NTZ columns (#296)
69

710
## 3.0.0 (2023-11-17)

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 = "3.0.0"
3+
version = "3.0.1"
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
@@ -29,7 +29,7 @@ def __repr__(self):
2929
DATE = DBAPITypeObject("date")
3030
ROWID = DBAPITypeObject()
3131

32-
__version__ = "3.0.0"
32+
__version__ = "3.0.1"
3333
USER_AGENT_NAME = "PyDatabricksSqlConnector"
3434

3535
# These two functions are pyhive legacy

0 commit comments

Comments
 (0)