Skip to content

Commit 957ef5a

Browse files
authored
release: 0.9.0 prerequisites (#428)
Updated the necessary files to prepare for `v0.9.0`.
1 parent 2bd3b33 commit 957ef5a

File tree

7 files changed

+21
-8
lines changed

7 files changed

+21
-8
lines changed

CHANGELOG.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,16 @@
1+
# 0.9.0 (2025/Apr/23)
2+
3+
### New features
4+
5+
- **New resource:** `oxide_floating_ip` [#427](https://github.com/oxidecomputer/terraform-provider-oxide/pull/427).
6+
- **New data resource:** `oxide_floating_ip` [#427](https://github.com/oxidecomputer/terraform-provider-oxide/pull/427).
7+
8+
### List of commits
9+
10+
- [2bd3b33](https://github.com/oxidecomputer/terraform-provider-oxide/commit/2bd3b33) oxide_floating_ip: initial resource and data source (#427)
11+
- [c54c243](https://github.com/oxidecomputer/terraform-provider-oxide/commit/c54c243) Bump golang.org/x/net from 0.37.0 to 0.38.0 (#424)
12+
- [440abcb](https://github.com/oxidecomputer/terraform-provider-oxide/commit/440abcb) Version bump to 0.9.0 (#422)
13+
114
# 0.8.0 (2025/Apr/15)
215

316
### 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.8.0"
29+
version = "0.9.0"
3030
}
3131
}
3232
}

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.8.0"
32+
version = "0.9.0"
3333
}
3434
}
3535
}

examples/demo/demo.tf

Lines changed: 2 additions & 2 deletions
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.8.0"
7+
version = "0.9.0"
88
}
99
}
1010
}
@@ -105,4 +105,4 @@ resource "oxide_instance" "db_instance_2" {
105105
memory = var.two_gib
106106
ncpus = 4
107107
disk_attachments = [oxide_disk.db_disk_2.id]
108-
}
108+
}

examples/disk_resource/disk.tf

Lines changed: 2 additions & 2 deletions
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.8.0"
7+
version = "0.9.0"
88
}
99
}
1010
}
@@ -31,4 +31,4 @@ resource "oxide_disk" "example2" {
3131
name = "mydisk2"
3232
size = 1073741824
3333
source_image_id = element(tolist(data.oxide_images.image_example.global_images[*].id), 0)
34-
}
34+
}

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.8.0"
7+
version = "0.9.0"
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.8.0"
7+
version = "0.9.0"
88
}
99
}
1010
}

0 commit comments

Comments
 (0)