From f0ed87d7f1d2bb2a7d4b50f1558b2746a609b16c Mon Sep 17 00:00:00 2001 From: Dariusz Porowski <3431813+DariuszPorowski@users.noreply.github.com> Date: Wed, 2 Oct 2024 16:16:09 -0700 Subject: [PATCH] feat(release): v0.1.0-beta.4 (#26) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ## v0.1.0-beta.4 - October 02, 2024 ### ✨ Added * [#22](https://github.com/microsoft/terraform-provider-fabric/issues/22) Additional binaries to the build artifacts * os: freebsd * arch: 386 * [#24](https://github.com/microsoft/terraform-provider-fabric/issues/24) Guide about Fabric Capacity configuration for Fabric Provider ### 💫 Changed * [#24](https://github.com/microsoft/terraform-provider-fabric/issues/24) Enhanced authentication guides --- .changes/unreleased/added-20240930-235244.yaml | 8 -------- .changes/unreleased/added-20241001-174434.yaml | 5 ----- .changes/unreleased/changed-20241001-174518.yaml | 5 ----- .changes/v0.1.0-beta.4.md | 13 +++++++++++++ .semver.yaml | 2 +- CHANGELOG.md | 14 ++++++++++++++ docs/guides/getting_started.md | 2 +- docs/index.md | 2 +- examples/provider/provider.tf | 2 +- 9 files changed, 31 insertions(+), 22 deletions(-) delete mode 100644 .changes/unreleased/added-20240930-235244.yaml delete mode 100644 .changes/unreleased/added-20241001-174434.yaml delete mode 100644 .changes/unreleased/changed-20241001-174518.yaml create mode 100644 .changes/v0.1.0-beta.4.md diff --git a/.changes/unreleased/added-20240930-235244.yaml b/.changes/unreleased/added-20240930-235244.yaml deleted file mode 100644 index 909264c4..00000000 --- a/.changes/unreleased/added-20240930-235244.yaml +++ /dev/null @@ -1,8 +0,0 @@ -kind: added -body: | - Additional binaries to the build artifacts - - os: freebsd - - arch: 386 -time: 2024-09-30T23:52:44.4012609-07:00 -custom: - Issue: "22" diff --git a/.changes/unreleased/added-20241001-174434.yaml b/.changes/unreleased/added-20241001-174434.yaml deleted file mode 100644 index 97212fd9..00000000 --- a/.changes/unreleased/added-20241001-174434.yaml +++ /dev/null @@ -1,5 +0,0 @@ -kind: added -body: Guide about Fabric Capacity configuration for Fabric Provider -time: 2024-10-01T17:44:34.2119801-07:00 -custom: - Issue: "24" diff --git a/.changes/unreleased/changed-20241001-174518.yaml b/.changes/unreleased/changed-20241001-174518.yaml deleted file mode 100644 index b908a841..00000000 --- a/.changes/unreleased/changed-20241001-174518.yaml +++ /dev/null @@ -1,5 +0,0 @@ -kind: changed -body: Enhanced authentication guides -time: 2024-10-01T17:45:18.5714082-07:00 -custom: - Issue: "24" diff --git a/.changes/v0.1.0-beta.4.md b/.changes/v0.1.0-beta.4.md new file mode 100644 index 00000000..932a9346 --- /dev/null +++ b/.changes/v0.1.0-beta.4.md @@ -0,0 +1,13 @@ +## v0.1.0-beta.4 - October 02, 2024 + +### ✨ Added + +* [#22](https://github.com/microsoft/terraform-provider-fabric/issues/22) Additional binaries to the build artifacts +* os: freebsd +* arch: 386 + +* [#24](https://github.com/microsoft/terraform-provider-fabric/issues/24) Guide about Fabric Capacity configuration for Fabric Provider + +### 💫 Changed + +* [#24](https://github.com/microsoft/terraform-provider-fabric/issues/24) Enhanced authentication guides diff --git a/.semver.yaml b/.semver.yaml index 3e5d2e45..88ba2795 100644 --- a/.semver.yaml +++ b/.semver.yaml @@ -1,4 +1,4 @@ alpha: 0 -beta: 3 +beta: 4 rc: 0 release: v0.1.0 diff --git a/CHANGELOG.md b/CHANGELOG.md index aeebb04e..e6597976 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,20 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/), adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html), and is generated by [Changie](https://github.com/miniscruff/changie). +## v0.1.0-beta.4 - October 02, 2024 + +### ✨ Added + +* [#22](https://github.com/microsoft/terraform-provider-fabric/issues/22) Additional binaries to the build artifacts +* os: freebsd +* arch: 386 + +* [#24](https://github.com/microsoft/terraform-provider-fabric/issues/24) Guide about Fabric Capacity configuration for Fabric Provider + +### 💫 Changed + +* [#24](https://github.com/microsoft/terraform-provider-fabric/issues/24) Enhanced authentication guides + ## v0.1.0-beta.3 - September 26, 2024 ### 💫 Changed diff --git a/docs/guides/getting_started.md b/docs/guides/getting_started.md index 49c87852..8b6b8336 100644 --- a/docs/guides/getting_started.md +++ b/docs/guides/getting_started.md @@ -44,7 +44,7 @@ terraform { required_providers { fabric = { source = "microsoft/fabric" - version = "0.1.0-beta.3" + version = "0.1.0-beta.4" } } } diff --git a/docs/index.md b/docs/index.md index 3d7cdf0d..603349db 100644 --- a/docs/index.md +++ b/docs/index.md @@ -25,7 +25,7 @@ terraform { required_providers { fabric = { source = "microsoft/fabric" - version = "0.1.0-beta.3" + version = "0.1.0-beta.4" } } } diff --git a/examples/provider/provider.tf b/examples/provider/provider.tf index 663a9d13..e7235c8b 100644 --- a/examples/provider/provider.tf +++ b/examples/provider/provider.tf @@ -4,7 +4,7 @@ terraform { required_providers { fabric = { source = "microsoft/fabric" - version = "0.1.0-beta.3" + version = "0.1.0-beta.4" } } }