From 94fc5e41cb6de4fa9c401ec889c01bc71e598c8d Mon Sep 17 00:00:00 2001 From: Miles Yucht Date: Thu, 15 Feb 2024 20:59:44 +0100 Subject: [PATCH] Release v0.19.1 (#546) New features: * Add `get_workspace_id()` to WorkspaceClient ([#537](https://github.com/databricks/databricks-sdk-py/pull/537)). Bugfix: * Create a deepcopy of config when creating workspace client from account client ([#542](https://github.com/databricks/databricks-sdk-py/pull/542)). This fixes an issue where `AccountClient` instances would stop working after calling `get_workspace_client()`. --- CHANGELOG.md | 9 +++++++++ databricks/sdk/version.py | 2 +- 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 7d179071e..aa6cdb36a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,14 @@ # Version changelog +## 0.19.1 + +New features: + +* Add `get_workspace_id()` to WorkspaceClient ([#537](https://github.com/databricks/databricks-sdk-py/pull/537)). + +Bugfix: + +* Create a deepcopy of config when creating workspace client from account client ([#542](https://github.com/databricks/databricks-sdk-py/pull/542)). This fixes an issue where `AccountClient` instances would stop working after calling `get_workspace_client()`. ## 0.19.0 ### Improvements and Bug Fixes diff --git a/databricks/sdk/version.py b/databricks/sdk/version.py index 482e4a19c..db7a41602 100644 --- a/databricks/sdk/version.py +++ b/databricks/sdk/version.py @@ -1 +1 @@ -__version__ = '0.19.0' +__version__ = '0.19.1'