From 82b07c84a7c511a1d3bac80411b34e9d6b4a3bc0 Mon Sep 17 00:00:00 2001 From: Tanmay Rustagi <88379306+tanmay-db@users.noreply.github.com> Date: Mon, 8 Jul 2024 18:54:38 +0200 Subject: [PATCH] Release v0.43.1 (#968) ## 0.43.1 ### Major Changes and Improvements: * Add a credentials provider for Github Azure OIDC ([#965](https://github.com/databricks/databricks-sdk-go/pull/965)). * Add DataPlane API Support ([#936](https://github.com/databricks/databricks-sdk-go/pull/936)). * Added more error messages for retriable errors (timeouts, etc.) ([#963](https://github.com/databricks/databricks-sdk-go/pull/963)). ### Internal Changes * Add ChangelogConfig to Generator struct ([#967](https://github.com/databricks/databricks-sdk-go/pull/967)). * Improve Changelog by grouping changes ([#962](https://github.com/databricks/databricks-sdk-go/pull/962)). * Parse API Error messages with `int` error codes ([#960](https://github.com/databricks/databricks-sdk-go/pull/960)). --- CHANGELOG.md | 13 +++++++++++++ version/version.go | 2 +- 2 files changed, 14 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1a9ea08c3..ca7582dd4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,18 @@ # Version changelog +## 0.43.1 + +### Major Changes and Improvements: + * Add a credentials provider for Github Azure OIDC ([#965](https://github.com/databricks/databricks-sdk-go/pull/965)). + * Add DataPlane API Support ([#936](https://github.com/databricks/databricks-sdk-go/pull/936)). + * Added more error messages for retriable errors (timeouts, etc.) ([#963](https://github.com/databricks/databricks-sdk-go/pull/963)). + +### Internal Changes + * Add ChangelogConfig to Generator struct ([#967](https://github.com/databricks/databricks-sdk-go/pull/967)). + * Improve Changelog by grouping changes ([#962](https://github.com/databricks/databricks-sdk-go/pull/962)). + * Parse API Error messages with `int` error codes ([#960](https://github.com/databricks/databricks-sdk-go/pull/960)). + + ## 0.43.0 Major Changes and Improvements: diff --git a/version/version.go b/version/version.go index 76b6831f0..3ef69b98c 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.43.0" +const Version = "0.43.1"