From 5c754f1d5c8560f401d202d90e2bd3e1a9a6a285 Mon Sep 17 00:00:00 2001 From: Serge Smertin <259697+nfx@users.noreply.github.com> Date: Mon, 3 Apr 2023 18:55:12 +0200 Subject: [PATCH] Release v0.6.0 (#355) # Version changelog ## 0.6.0 * Added type to represent a loaded configuration file ([#349](https://github.com/databricks/databricks-sdk-go/pull/349)). * Added named `Wait` the level of services ([#348](https://github.com/databricks/databricks-sdk-go/pull/348)). * Pass `azure_client_id` to Azure MSI if specified ([#354](https://github.com/databricks/databricks-sdk-go/pull/354)). Dependency updates: * Bump google.golang.org/api from 0.112.0 to 0.114.0 ([#344](https://github.com/databricks/databricks-sdk-go/pull/344)). --- CHANGELOG.md | 10 ++++++++++ README.md | 2 +- version/version.go | 2 +- 3 files changed, 12 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8f7522f28..0be0b31bb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,15 @@ # Version changelog +## 0.6.0 + + * Added type to represent a loaded configuration file ([#349](https://github.com/databricks/databricks-sdk-go/pull/349)). + * Added named `Wait` the level of services ([#348](https://github.com/databricks/databricks-sdk-go/pull/348)). + * Pass `azure_client_id` to Azure MSI if specified ([#354](https://github.com/databricks/databricks-sdk-go/pull/354)). + +Dependency updates: + + * Bump google.golang.org/api from 0.112.0 to 0.114.0 ([#344](https://github.com/databricks/databricks-sdk-go/pull/344)). + ## 0.5.0 * Added Delta Live Tables events method to `pipelines.PipelinesAPI` ([#339](https://github.com/databricks/databricks-sdk-go/pull/339)). diff --git a/README.md b/README.md index 10118fac8..42d3b817d 100644 --- a/README.md +++ b/README.md @@ -38,7 +38,7 @@ The Databricks SDK for Go includes functionality to accelerate development with go 1.18 - require github.com/databricks/databricks-sdk-go v0.5.0 + require github.com/databricks/databricks-sdk-go v0.6.0 // Indirect dependencies will go here. ``` diff --git a/version/version.go b/version/version.go index 2e35d49b4..78be070ef 100644 --- a/version/version.go +++ b/version/version.go @@ -1,4 +1,4 @@ package version // Version of the SDK, updated manually before every tag -const Version = "0.5.0" +const Version = "0.6.0"