diff --git a/.changes/unreleased/changed-20240925-235434.yaml b/.changes/unreleased/changed-20240925-235434.yaml deleted file mode 100644 index 69ccfc71..00000000 --- a/.changes/unreleased/changed-20240925-235434.yaml +++ /dev/null @@ -1,5 +0,0 @@ -kind: changed -body: Enhanced user context authentication guide -time: 2024-09-25T23:54:34.3572996-07:00 -custom: - Issue: "17" diff --git a/.changes/unreleased/fixed-20240925-204940.yaml b/.changes/unreleased/fixed-20240925-204940.yaml deleted file mode 100644 index 0584541b..00000000 --- a/.changes/unreleased/fixed-20240925-204940.yaml +++ /dev/null @@ -1,7 +0,0 @@ -kind: fixed -body: | - The `fabric_workspace` data-source had invalid schema for the workspace identity. - The schema has been changed from `enabled` (bool) to `type` (string). -time: 2024-09-25T20:49:40.662186-07:00 -custom: - Issue: "15" diff --git a/.changes/unreleased/fixed-20240925-235302.yaml b/.changes/unreleased/fixed-20240925-235302.yaml deleted file mode 100644 index a6354a9c..00000000 --- a/.changes/unreleased/fixed-20240925-235302.yaml +++ /dev/null @@ -1,5 +0,0 @@ -kind: fixed -body: Fixed links in the index doc -time: 2024-09-25T23:53:02.269467-07:00 -custom: - Issue: "17" diff --git a/.changes/v0.1.0-beta.3.md b/.changes/v0.1.0-beta.3.md new file mode 100644 index 00000000..abce18ed --- /dev/null +++ b/.changes/v0.1.0-beta.3.md @@ -0,0 +1,12 @@ +## v0.1.0-beta.3 - September 26, 2024 + +### 💫 Changed + +* [#17](https://github.com/microsoft/terraform-provider-fabric/issues/17) Enhanced user context authentication guide + +### 🪲 Fixed + +* [#15](https://github.com/microsoft/terraform-provider-fabric/issues/15) The `fabric_workspace` data-source had invalid schema for the workspace identity. +The schema has been changed from `enabled` (bool) to `type` (string). + +* [#17](https://github.com/microsoft/terraform-provider-fabric/issues/17) Fixed links in the index doc diff --git a/.semver.yaml b/.semver.yaml index 7af26403..3e5d2e45 100644 --- a/.semver.yaml +++ b/.semver.yaml @@ -1,4 +1,4 @@ alpha: 0 -beta: 2 +beta: 3 rc: 0 release: v0.1.0 diff --git a/CHANGELOG.md b/CHANGELOG.md index 5c2ce0eb..aeebb04e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,19 @@ 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.3 - September 26, 2024 + +### 💫 Changed + +* [#17](https://github.com/microsoft/terraform-provider-fabric/issues/17) Enhanced user context authentication guide + +### 🪲 Fixed + +* [#15](https://github.com/microsoft/terraform-provider-fabric/issues/15) The `fabric_workspace` data-source had invalid schema for the workspace identity. +The schema has been changed from `enabled` (bool) to `type` (string). + +* [#17](https://github.com/microsoft/terraform-provider-fabric/issues/17) Fixed links in the index doc + ## v0.1.0-beta.2 - September 20, 2024 ### 🪲 Fixed diff --git a/Taskfile.yml b/Taskfile.yml index 7b44cd89..24a329b4 100644 --- a/Taskfile.yml +++ b/Taskfile.yml @@ -514,6 +514,7 @@ tasks: - cmd: winget install lycheeverse.lychee platforms: [windows] - cmd: cargo install lychee + ignore_error: true platforms: [linux] - cmd: brew install lychee platforms: [darwin] diff --git a/docs/guides/getting_started.md b/docs/guides/getting_started.md index 57d4a25e..9d5bdf6b 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.2" + version = "0.1.0-beta.3" } } } diff --git a/docs/index.md b/docs/index.md index 32a9b0e0..3d7cdf0d 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.2" + version = "0.1.0-beta.3" } } } diff --git a/examples/provider/provider.tf b/examples/provider/provider.tf index 3c8fbf99..663a9d13 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.2" + version = "0.1.0-beta.3" } } }