diff --git a/CHANGELOG.md b/CHANGELOG.md index 7eca0bda..16462554 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,9 @@ # Release History -# x.x.x (TBD) +# 3.1.2 (2024-04-18) + +- Remove broken cookie code (#379) +- Small typing fixes (#382, #384 thanks @wyattscarpenter) # 3.1.1 (2024-03-19) diff --git a/pyproject.toml b/pyproject.toml index fae61739..8f54a057 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "databricks-sql-connector" -version = "3.1.1" +version = "3.1.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 c885998b..56d4e204 100644 --- a/src/databricks/sql/__init__.py +++ b/src/databricks/sql/__init__.py @@ -68,7 +68,7 @@ def __repr__(self): DATE = DBAPITypeObject("date") ROWID = DBAPITypeObject() -__version__ = "3.1.1" +__version__ = "3.1.2" USER_AGENT_NAME = "PyDatabricksSqlConnector" # These two functions are pyhive legacy