Skip to content

Commit 592b762

Browse files
NiallEgansusodapop
authored andcommitted
Release PySQL V2
Version bump for PySQL V2
1 parent a2336d6 commit 592b762

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

cmdexec/clients/python/src/databricks/sql/HISTORY

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
v2.0.0 - April 19, 2022
2+
- Initial stable release of V2
3+
- Added better support for complex types, so that in Databricks runtime 10.3+, Arrays, Maps and Structs will get
4+
deserialized as lists, lists of tuples and dicts, respectively.
5+
16
v2.0.b2 - April 4, 2022
27
- Change import of collections.Iterable to collections.abc.Iterable to make the library compatible with Python 3.10
38
- Fixed bug with .tables method so that .tables works as expected with Unity-Catalog enabled endpoints

cmdexec/clients/python/src/databricks/sql/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ def __repr__(self):
2727
DATE = DBAPITypeObject('date')
2828
ROWID = DBAPITypeObject()
2929

30-
__version__ = "2.0.0b2"
30+
__version__ = "2.0.0"
3131
USER_AGENT_NAME = "PyDatabricksSqlConnector"
3232

3333
# These two functions are pyhive legacy

0 commit comments

Comments
 (0)