Skip to content

Commit 64c71fb

Browse files
authored
Bump to 3.1.1 (#374)
* bump to 3.1.1 Signed-off-by: Ben Cassell <[email protected]>
1 parent 1d4da9a commit 64c71fb

File tree

3 files changed

+7
-3
lines changed

3 files changed

+7
-3
lines changed

CHANGELOG.md

+5-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,11 @@
22

33
# x.x.x (TBD)
44

5-
- Don't retry requests that fail with code 403
5+
# 3.1.1 (2024-03-19)
6+
7+
- Don't retry requests that fail with code 403 (#373)
8+
- Assume a default retry-after for 429/503 (#371)
9+
- Fix boolean literals (#357)
610

711
# 3.1.0 (2024-02-16)
812

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.0"
3+
version = "3.1.1"
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
@@ -62,7 +62,7 @@ def __repr__(self):
6262
DATE = DBAPITypeObject("date")
6363
ROWID = DBAPITypeObject()
6464

65-
__version__ = "3.1.0"
65+
__version__ = "3.1.1"
6666
USER_AGENT_NAME = "PyDatabricksSqlConnector"
6767

6868
# These two functions are pyhive legacy

0 commit comments

Comments
 (0)