Skip to content

Commit

Permalink
feat(release): v0.1.0-beta.3 (#19)
Browse files Browse the repository at this point in the history
## v0.1.0-beta.3 - September 26, 2024

### 💫 Changed

*
[#17](#17)
Enhanced user context authentication guide

### 🪲 Fixed

*
[#15](#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](#17)
Fixed links in the index doc
  • Loading branch information
DariuszPorowski authored Sep 26, 2024
1 parent 0205923 commit 1396a59
Show file tree
Hide file tree
Showing 10 changed files with 30 additions and 21 deletions.
5 changes: 0 additions & 5 deletions .changes/unreleased/changed-20240925-235434.yaml

This file was deleted.

7 changes: 0 additions & 7 deletions .changes/unreleased/fixed-20240925-204940.yaml

This file was deleted.

5 changes: 0 additions & 5 deletions .changes/unreleased/fixed-20240925-235302.yaml

This file was deleted.

12 changes: 12 additions & 0 deletions .changes/v0.1.0-beta.3.md
Original file line number Diff line number Diff line change
@@ -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
2 changes: 1 addition & 1 deletion .semver.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
alpha: 0
beta: 2
beta: 3
rc: 0
release: v0.1.0
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
1 change: 1 addition & 0 deletions Taskfile.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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]
2 changes: 1 addition & 1 deletion docs/guides/getting_started.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ terraform {
required_providers {
fabric = {
source = "microsoft/fabric"
version = "0.1.0-beta.2"
version = "0.1.0-beta.3"
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ terraform {
required_providers {
fabric = {
source = "microsoft/fabric"
version = "0.1.0-beta.2"
version = "0.1.0-beta.3"
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion examples/provider/provider.tf
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ terraform {
required_providers {
fabric = {
source = "microsoft/fabric"
version = "0.1.0-beta.2"
version = "0.1.0-beta.3"
}
}
}
Expand Down

0 comments on commit 1396a59

Please sign in to comment.