Skip to content

Commit 59810dc

Browse files
committed
misc: prepare for 0.14.1 release
1 parent f998829 commit 59810dc

10 files changed

Lines changed: 33 additions & 8 deletions

File tree

.changelog/0.14.1.toml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
[[breaking]]
2+
title = ""
3+
description = ""
4+
5+
[[features]]
6+
title = ""
7+
description = ""
8+
9+
[[enhancements]]
10+
title = ""
11+
description = ""
12+
13+
[[bugs]]
14+
title = "`oxide_silo`"
15+
description = "The `id` attribute no longer shows as `(known after apply)` during an update. [#529](https://github.com/oxidecomputer/terraform-provider-oxide/pull/529)"

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
# 0.14.1 (2025/Sep/24)
2+
3+
### Bug fixes
4+
5+
- **`oxide_silo`:** The `id` attribute no longer shows as `(known after apply)` during an update. [#529](https://github.com/oxidecomputer/terraform-provider-oxide/pull/529)
6+
7+
### List of commits
8+
9+
- [6c1a07c](https://github.com/oxidecomputer/terraform-provider-oxide/commit/6c1a07c) silo: use previous state for id attribute (#529)
10+
111
# 0.14.0 (2025/Sep/04)
212

313
### New features

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ terraform {
2626
required_providers {
2727
oxide = {
2828
source = "oxidecomputer/oxide"
29-
version = "0.14.0"
29+
version = "0.14.1"
3030
}
3131
}
3232
}

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.14.0-dev
1+
0.14.1-dev

docs/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ terraform {
2929
required_providers {
3030
oxide = {
3131
source = "oxidecomputer/oxide"
32-
version = "0.14.0"
32+
version = "0.14.1"
3333
}
3434
}
3535
}

examples/demo/demo.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ terraform {
44
required_providers {
55
oxide = {
66
source = "oxidecomputer/oxide"
7-
version = "0.14.0"
7+
version = "0.14.1"
88
}
99
}
1010
}

examples/disk_resource/disk.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ terraform {
44
required_providers {
55
oxide = {
66
source = "oxidecomputer/oxide"
7-
version = "0.14.0"
7+
version = "0.14.1"
88
}
99
}
1010
}

examples/instance_resource/instance.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ terraform {
44
required_providers {
55
oxide = {
66
source = "oxidecomputer/oxide"
7-
version = "0.14.0"
7+
version = "0.14.1"
88
}
99
}
1010
}

examples/vpc_resource/vpc.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ terraform {
44
required_providers {
55
oxide = {
66
source = "oxidecomputer/oxide"
7-
version = "0.14.0"
7+
version = "0.14.1"
88
}
99
}
1010
}

internal/provider/version.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,4 @@ package provider
77
// TODO: Make sure this variable is updated every time a new version is released
88

99
// Version contains the current terraform provider version.
10-
const Version = "0.14.0"
10+
const Version = "0.14.1"

0 commit comments

Comments
 (0)