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'