From b933352c432521e3982e5b75504291f29ef48e00 Mon Sep 17 00:00:00 2001 From: Jesse Whitehouse Date: Wed, 7 Jun 2023 17:16:31 -0500 Subject: [PATCH] Bump version to 2.6.0 Signed-off-by: Jesse Whitehouse --- CHANGELOG.md | 5 ++++- pyproject.toml | 2 +- src/databricks/sql/__init__.py | 2 +- 3 files changed, 6 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 74d278b04..11fc9cb29 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,8 +1,11 @@ # Release History -## 2.5.x (Unreleased) +## 2.6.x (Unreleased) + +## 2.6.0 (2023-06-07) - Add support for HTTP 1.1 connections (connection pools) +- Add a default socket timeout for thrift RPCs ## 2.5.2 (2023-05-08) diff --git a/pyproject.toml b/pyproject.toml index e93dcd1b7..16965f67e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "databricks-sql-connector" -version = "2.5.2" +version = "2.6.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 fdfb3fb67..028a52d97 100644 --- a/src/databricks/sql/__init__.py +++ b/src/databricks/sql/__init__.py @@ -28,7 +28,7 @@ def __repr__(self): DATE = DBAPITypeObject("date") ROWID = DBAPITypeObject() -__version__ = "2.5.2" +__version__ = "2.6.0" USER_AGENT_NAME = "PyDatabricksSqlConnector" # These two functions are pyhive legacy