From 0fe95dacbe7fcbbfd340142a8df8275ebf002e83 Mon Sep 17 00:00:00 2001 From: Jothi Prakash Date: Mon, 2 Mar 2026 20:32:44 +0530 Subject: [PATCH] Bumped version --- CHANGELOG.md | 4 ++++ pyproject.toml | 2 +- src/databricks/sql/__init__.py | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 99173ceae..c2ffbbe92 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Release History +# 3.7.5 (2026-03-02) + +- Fix: Pyarrow concat to now merge with promote options as default (databricks/databricks-sql-python#745 by @jprakash-db) + # 3.7.4 (2025-04-21) - Fix: compatibility with urllib3 versions less than 2.x (databricks/databricks-sql-python#545 by @jprakash-db) diff --git a/pyproject.toml b/pyproject.toml index afe7dd3fc..7303785e8 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "databricks-sql-connector" -version = "3.7.4" +version = "3.7.5" 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 e80bb8376..a33b0e6c5 100644 --- a/src/databricks/sql/__init__.py +++ b/src/databricks/sql/__init__.py @@ -68,7 +68,7 @@ def __repr__(self): DATE = DBAPITypeObject("date") ROWID = DBAPITypeObject() -__version__ = "3.7.4" +__version__ = "3.7.5" USER_AGENT_NAME = "PyDatabricksSqlConnector" # These two functions are pyhive legacy