Skip to content

Commit 6b7f352

Browse files
author
Jesse
authored
Update changelog and bump to v2.0.4 (#34)
* Update changelog and bump to v2.0.4 * Specifically thank @dbaxa for this change. Signed-off-by: Jesse Whitehouse <[email protected]>
1 parent cabc7f9 commit 6b7f352

File tree

3 files changed

+9
-2
lines changed

3 files changed

+9
-2
lines changed

CHANGELOG.md

+7
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,13 @@
22

33
## 2.0.x (Unreleased)
44

5+
## 2.0.4 (2022-08-17)
6+
7+
- Add support for Python 3.10
8+
- Add unit test matrix for supported Python versions
9+
10+
Huge thanks to @dbaxa for contributing this change!
11+
512
## 2.0.3 (2022-08-05)
613

714
- Add retry logic for `GetOperationStatus` requests that fail with an `OSError`

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 = "2.0.4-dev"
3+
version = "2.0.4"
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
@@ -28,7 +28,7 @@ def __repr__(self):
2828
DATE = DBAPITypeObject("date")
2929
ROWID = DBAPITypeObject()
3030

31-
__version__ = "2.0.4-dev"
31+
__version__ = "2.0.4"
3232
USER_AGENT_NAME = "PyDatabricksSqlConnector"
3333

3434
# These two functions are pyhive legacy

0 commit comments

Comments
 (0)