Skip to content

Commit b86b538

Browse files
committed
bump to 3.1.1
Signed-off-by: Ben Cassell <ben.cassell@databricks.com>
1 parent 1d4da9a commit b86b538

File tree

3 files changed

+8
-5
lines changed

3 files changed

+8
-5
lines changed

CHANGELOG.md

Lines changed: 5 additions & 1 deletion
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

Lines changed: 1 addition & 1 deletion
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 <databricks-sql-connector-maintainers@databricks.com>"]
66
license = "Apache-2.0"

src/databricks/sql/__init__.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,7 @@ def filter(self, record):
3232
)
3333
else:
3434
record.args = tuple(
35-
(self.redact(arg) if isinstance(arg, str) else arg)
36-
for arg in record.args
35+
(self.redact(arg) if isinstance(arg, str) else arg) for arg in record.args
3736
)
3837

3938
return True
@@ -62,7 +61,7 @@ def __repr__(self):
6261
DATE = DBAPITypeObject("date")
6362
ROWID = DBAPITypeObject()
6463

65-
__version__ = "3.1.0"
64+
__version__ = "3.1.1"
6665
USER_AGENT_NAME = "PyDatabricksSqlConnector"
6766

6867
# These two functions are pyhive legacy

0 commit comments

Comments
 (0)