diff --git a/.changes/unreleased/fixed-20241119-215139.yaml b/.changes/unreleased/fixed-20241119-215139.yaml deleted file mode 100644 index 105d8f4a..00000000 --- a/.changes/unreleased/fixed-20241119-215139.yaml +++ /dev/null @@ -1,5 +0,0 @@ -kind: fixed -body: Create Identity with Fabric workspace failed due to inconsistent result after apply -time: 2024-11-19T21:51:39.7634679-08:00 -custom: - Issue: "93" diff --git a/.changes/unreleased/fixed-20241121-214245.yaml b/.changes/unreleased/fixed-20241121-214245.yaml deleted file mode 100644 index 31ba7e09..00000000 --- a/.changes/unreleased/fixed-20241121-214245.yaml +++ /dev/null @@ -1,5 +0,0 @@ -kind: fixed -body: Remove the package name from the flags used to set main.version during the release process -time: 2024-11-21T21:42:45.530221257Z -custom: - Issue: "102" diff --git a/.changes/unreleased/fixed-20241122-130758.yaml b/.changes/unreleased/fixed-20241122-130758.yaml deleted file mode 100644 index 27c9bf0f..00000000 --- a/.changes/unreleased/fixed-20241122-130758.yaml +++ /dev/null @@ -1,5 +0,0 @@ -kind: fixed -body: Deprovision Workspace Identity during destroy Workspace operation -time: 2024-11-22T13:07:58.7068428-08:00 -custom: - Issue: "96" diff --git a/.changes/unreleased/fixed-20241125-090146.yaml b/.changes/unreleased/fixed-20241125-090146.yaml deleted file mode 100644 index e15e8b54..00000000 --- a/.changes/unreleased/fixed-20241125-090146.yaml +++ /dev/null @@ -1,5 +0,0 @@ -kind: fixed -body: Removed info about GitHub support in the docs, which one is not yet supported in provider. -time: 2024-11-25T09:01:46.6991069-08:00 -custom: - Issue: "108" diff --git a/.changes/v0.1.0-beta.6.md b/.changes/v0.1.0-beta.6.md new file mode 100644 index 00000000..df9e60a5 --- /dev/null +++ b/.changes/v0.1.0-beta.6.md @@ -0,0 +1,8 @@ +## v0.1.0-beta.6 - December 02, 2024 + +### 🪲 Fixed + +* [#93](https://github.com/microsoft/terraform-provider-fabric/issues/93) Create Identity with Fabric workspace failed due to inconsistent result after apply +* [#102](https://github.com/microsoft/terraform-provider-fabric/issues/102) Remove the package name from the flags used to set main.version during the release process +* [#96](https://github.com/microsoft/terraform-provider-fabric/issues/96) Deprovision Workspace Identity during destroy Workspace operation +* [#108](https://github.com/microsoft/terraform-provider-fabric/issues/108) Removed info about GitHub support in the docs, which one is not yet supported in provider. diff --git a/.semver.yaml b/.semver.yaml index 72fd4394..d0896ca1 100644 --- a/.semver.yaml +++ b/.semver.yaml @@ -1,4 +1,4 @@ alpha: 0 -beta: 5 +beta: 6 rc: 0 release: v0.1.0 diff --git a/CHANGELOG.md b/CHANGELOG.md index 1c236766..45f62274 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,15 @@ 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.6 - December 02, 2024 + +### 🪲 Fixed + +* [#93](https://github.com/microsoft/terraform-provider-fabric/issues/93) Create Identity with Fabric workspace failed due to inconsistent result after apply +* [#102](https://github.com/microsoft/terraform-provider-fabric/issues/102) Remove the package name from the flags used to set main.version during the release process +* [#96](https://github.com/microsoft/terraform-provider-fabric/issues/96) Deprovision Workspace Identity during destroy Workspace operation +* [#108](https://github.com/microsoft/terraform-provider-fabric/issues/108) Removed info about GitHub support in the docs, which one is not yet supported in provider. + ## v0.1.0-beta.5 - November 13, 2024 ### ✨ Added diff --git a/docs/guides/getting_started.md b/docs/guides/getting_started.md index 809a981d..df26430e 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.5" + version = "0.1.0-beta.6" } } } diff --git a/docs/index.md b/docs/index.md index e97e4d37..7a7f38cf 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.5" + version = "0.1.0-beta.6" } } } diff --git a/examples/provider/provider.tf b/examples/provider/provider.tf index abb3f14a..d649f638 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.5" + version = "0.1.0-beta.6" } } }