Skip to content

Commit 1b145aa

Browse files
authored
Prepare for 3.1.2 (#387)
Signed-off-by: Ben Cassell <[email protected]>
1 parent 34fdff3 commit 1b145aa

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

CHANGELOG.md

+4-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
# Release History
22

3-
# x.x.x (TBD)
3+
# 3.1.2 (2024-04-18)
4+
5+
- Remove broken cookie code (#379)
6+
- Small typing fixes (#382, #384 thanks @wyattscarpenter)
47

58
# 3.1.1 (2024-03-19)
69

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.1.1"
3+
version = "3.1.2"
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.1.1"
71+
__version__ = "3.1.2"
7272
USER_AGENT_NAME = "PyDatabricksSqlConnector"
7373

7474
# These two functions are pyhive legacy

0 commit comments

Comments
 (0)