From 55105febf4c771cc9286bba81443d3c6eb6b09b4 Mon Sep 17 00:00:00 2001 From: Jacky Hu Date: Fri, 18 Oct 2024 10:35:58 -0700 Subject: [PATCH] Prepare release v3.5.0 (#457) Prepare release 3.5.0 Signed-off-by: Jacky Hu --- CHANGELOG.md | 5 +++++ pyproject.toml | 2 +- src/databricks/sql/__init__.py | 2 +- 3 files changed, 7 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 14db0f8b..93391193 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,10 @@ # Release History +# 3.5.0 (2024-10-18) + +- Create a non pyarrow flow to handle small results for the column set (databricks/databricks-sql-python#440 by @jprakash-db) +- Fix: On non-retryable error, ensure PySQL includes useful information in error (databricks/databricks-sql-python#447 by @shivam2680) + # 3.4.0 (2024-08-27) - Unpin pandas to support v2.2.2 (databricks/databricks-sql-python#416 by @kfollesdal) diff --git a/pyproject.toml b/pyproject.toml index 69d0c274..79b7b926 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "databricks-sql-connector" -version = "3.4.0" +version = "3.5.0" 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 c0fdc2f1..8bbcc5f6 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.4.0" +__version__ = "3.5.0" USER_AGENT_NAME = "PyDatabricksSqlConnector" # These two functions are pyhive legacy