Skip to content

Commit 6ae2899

Browse files
committed
Release ct provider v0.9.0
1 parent 52a4755 commit 6ae2899

File tree

5 files changed

+13
-15
lines changed

5 files changed

+13
-15
lines changed

CHANGES.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,14 @@ Notable changes between releases.
44

55
## Latest
66

7+
## v0.9.0
8+
9+
* Add Butane Config v1.4.0 support ([#100](https://github.com/poseidon/terraform-provider-ct/pull/100))
10+
* Accept Butane v1.4.0 config/snippets and render Ignition v3.3.0
11+
* Rename Fedora CoreOS Configs to Butane Configs
12+
* Remove Go module vendoring
13+
* Remove tarball release format
14+
715
## v0.8.0
816

917
* Migrate to Terraform Plugin SDK v2.3.0 ([#75](https://github.com/poseidon/terraform-provider-ct/pull/75))

README.md

Lines changed: 1 addition & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ terraform {
1313
required_providers {
1414
ct = {
1515
source = "poseidon/ct"
16-
version = "0.8.0"
16+
version = "0.9.0"
1717
}
1818
}
1919
}
@@ -102,13 +102,3 @@ To develop the provider plugin locally, build an executable with Go v1.13+.
102102
```
103103
make
104104
```
105-
106-
### Vendor
107-
108-
Add or update dependencies in `go.mod` and vendor.
109-
110-
```
111-
make update
112-
make vendor
113-
```
114-

examples/content/fcc-snippet.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
variant: fcos
2-
version: 1.3.0
2+
version: 1.4.0
33
storage:
44
files:
55
- path: /etc/zincati/config.d/90-disable-feature.toml

examples/content/fcc.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
variant: fcos
3-
version: 1.3.0
3+
version: 1.4.0
44
storage:
55
filesystems:
66
- path: /

examples/versions.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@ terraform {
77

88
ct = {
99
source = "poseidon/ct"
10-
version = "~> 0.8.0"
10+
version = "~> 0.9.0"
1111
#source = "terraform.localhost/poseidon/ct"
12-
#version = "0.8.0"
12+
#version = "0.9.0"
1313
}
1414
}
1515
}

0 commit comments

Comments
 (0)