From bde1cfa921dca67e748e0f385e6f7ac86d4843ee Mon Sep 17 00:00:00 2001 From: Ben Cassell Date: Thu, 18 Apr 2024 09:21:36 -0700 Subject: [PATCH] Prepare for 3.1.2 Signed-off-by: Ben Cassell --- 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 7eca0bda4..16462554a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,9 @@ # Release History -# x.x.x (TBD) +# 3.1.2 (2024-04-18) + +- Remove broken cookie code (#379) +- Small typing fixes (#382, #384 thanks @wyattscarpenter) # 3.1.1 (2024-03-19) diff --git a/pyproject.toml b/pyproject.toml index fae61739f..8f54a0571 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "databricks-sql-connector" -version = "3.1.1" +version = "3.1.2" 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 c885998bd..56d4e2048 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.1.1" +__version__ = "3.1.2" USER_AGENT_NAME = "PyDatabricksSqlConnector" # These two functions are pyhive legacy