Skip to content

Commit f9d6ef1

Browse files
authored
Bumped up to version 3.7.0 (#482)
* bumped up version * Updated to version 3.7.0 * Grammar fix * Minor fix
1 parent ab4b73b commit f9d6ef1

File tree

3 files changed

+10
-2
lines changed

3 files changed

+10
-2
lines changed

CHANGELOG.md

+8
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# Release History
22

3+
# 3.7.0 (2024-12-23)
4+
5+
- Fix: Incorrect number of rows fetched in inline results when fetching results with FETCH_NEXT orientation (databricks/databricks-sql-python#479 by @jprakash-db)
6+
- Updated the doc to specify native parameters are not supported in PUT operation (databricks/databricks-sql-python#477 by @jprakash-db)
7+
- Relax `pyarrow` and `numpy` pin (databricks/databricks-sql-python#452 by @arredond)
8+
- Feature: Support for async execute has been added (databricks/databricks-sql-python#463 by @jprakash-db)
9+
- Updated the HTTP retry logic to be similar to the other Databricks drivers (databricks/databricks-sql-python#467 by @jprakash-db)
10+
311
# 3.6.0 (2024-10-25)
412

513
- Support encryption headers in the cloud fetch request (https://github.com/databricks/databricks-sql-python/pull/460 by @jackyhu-db)

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.6.0"
3+
version = "3.7.0"
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
@@ -68,7 +68,7 @@ def __repr__(self):
6868
DATE = DBAPITypeObject("date")
6969
ROWID = DBAPITypeObject()
7070

71-
__version__ = "3.6.0"
71+
__version__ = "3.7.0"
7272
USER_AGENT_NAME = "PyDatabricksSqlConnector"
7373

7474
# These two functions are pyhive legacy

0 commit comments

Comments
 (0)