Skip to content

Commit d024317

Browse files
author
Jesse
authored
Bump version to 2.0.5 and improve CHANGELOG (#40)
Signed-off-by: Jesse Whitehouse <[email protected]>
1 parent cc3ec14 commit d024317

File tree

3 files changed

+7
-2
lines changed

3 files changed

+7
-2
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,11 @@
22

33
## 2.0.x (Unreleased)
44

5+
## 2.0.5 (2022-08-23)
6+
7+
- Fix: closing a connection now closes any open cursors from that connection at the server
8+
- Other: Add project links to pyproject.toml (helpful for visitors from PyPi)
9+
510
## 2.0.4 (2022-08-17)
611

712
- Add support for Python 3.10

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 = "2.0.5-dev"
3+
version = "2.0.5"
44
description = "Databricks SQL Connector for Python"
55
authors = ["Databricks <[email protected]>"]
66
license = "Apache-2.0"

src/databricks/sql/__init__.py

Lines changed: 1 addition & 1 deletion
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.5-dev"
31+
__version__ = "2.0.5"
3232
USER_AGENT_NAME = "PyDatabricksSqlConnector"
3333

3434
# These two functions are pyhive legacy

0 commit comments

Comments
 (0)