From 02985ad7d7ab84c59b87dd5a34a151a9a58746ce Mon Sep 17 00:00:00 2001 From: Jesse Whitehouse Date: Thu, 30 Nov 2023 17:10:21 -0500 Subject: [PATCH 1/4] Bump package version to 3.0.1 and update changelog Signed-off-by: Jesse Whitehouse --- CHANGELOG.md | 5 ++++- pyproject.toml | 2 +- src/databricks/sql/__init__.py | 2 +- 3 files changed, 6 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6668aa8d..5c15f2f9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,7 +1,10 @@ # Release History -## 3.0.1 (unreleased) +## 3.0.1 (2023-12-01) +- Other: updated docstring comment about default parameterization approach (#287) +- Other: added tests for reading complex types and revised docstrings and type hints (#293) +- Fix: SQLAlchemy dialect raised DeprecationWarning due to `dbapi` classmethod (#294) - Fix: SQLAlchemy dialect could not reflect TIMESTAMP_NTZ columns (#296) ## 3.0.0 (2023-11-17) diff --git a/pyproject.toml b/pyproject.toml index 8c49d361..7eaaa0a5 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "databricks-sql-connector" -version = "3.0.0" +version = "3.0.1" description = "Databricks SQL Connector for Python" authors = ["Databricks "] license = "Apache-2.0" diff --git a/src/databricks/sql/__init__.py b/src/databricks/sql/__init__.py index e80e1b3d..96345df9 100644 --- a/src/databricks/sql/__init__.py +++ b/src/databricks/sql/__init__.py @@ -29,7 +29,7 @@ def __repr__(self): DATE = DBAPITypeObject("date") ROWID = DBAPITypeObject() -__version__ = "3.0.0" +__version__ = "3.0.1" USER_AGENT_NAME = "PyDatabricksSqlConnector" # These two functions are pyhive legacy From b7630053ba25490d16d4fc6489f4dd4640e750f6 Mon Sep 17 00:00:00 2001 From: Jesse Whitehouse Date: Thu, 25 Jan 2024 19:27:16 -0500 Subject: [PATCH 2/4] Update version Signed-off-by: Jesse Whitehouse --- pyproject.toml | 2 +- src/databricks/sql/__init__.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index d8561690..eb779c43 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "databricks-sql-connector" -version = "3.0.1" +version = "3.0.2" description = "Databricks SQL Connector for Python" authors = ["Databricks "] license = "Apache-2.0" diff --git a/src/databricks/sql/__init__.py b/src/databricks/sql/__init__.py index 96345df9..40bdacf7 100644 --- a/src/databricks/sql/__init__.py +++ b/src/databricks/sql/__init__.py @@ -29,7 +29,7 @@ def __repr__(self): DATE = DBAPITypeObject("date") ROWID = DBAPITypeObject() -__version__ = "3.0.1" +__version__ = "3.0.2" USER_AGENT_NAME = "PyDatabricksSqlConnector" # These two functions are pyhive legacy From f73e8e46bc61796be4b0721ff0f115469118110d Mon Sep 17 00:00:00 2001 From: Jesse Whitehouse Date: Thu, 25 Jan 2024 19:59:29 -0500 Subject: [PATCH 3/4] Update changelog release version Signed-off-by: Jesse Whitehouse --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 53f49fa2..9922111a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ # Release History -# 3.1.0 (TBD) +# 3.0.2 (2024-01-24) - SQLAlchemy dialect now supports table and column comments (thanks @cbornet!) - Fix: SQLAlchemy dialect now correctly reflects TINYINT types (thanks @TimTheinAtTabs!) From 61e94a27e465bfdba8c0a87cd3321f45a8fcd74a Mon Sep 17 00:00:00 2001 From: Jesse Whitehouse Date: Fri, 26 Jan 2024 16:12:34 -0500 Subject: [PATCH 4/4] Update release date Signed-off-by: Jesse Whitehouse --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9922111a..2138b5c2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ # Release History -# 3.0.2 (2024-01-24) +# 3.0.2 (2024-01-25) - SQLAlchemy dialect now supports table and column comments (thanks @cbornet!) - Fix: SQLAlchemy dialect now correctly reflects TINYINT types (thanks @TimTheinAtTabs!)