Skip to content

Commit

Permalink
Prepare for v0.13.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
dghubble committed Apr 6, 2023
1 parent 3d57448 commit 2b64800
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 7 deletions.
2 changes: 2 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@ Notable changes between releases.

* Update the target stable Ignition spec version to v3.4.0 ([#156](https://github.com/poseidon/terraform-provider-ct/pull/156))
* Parse Butane Configs to Ignition v3.4.0 ([#159](https://github.com/poseidon/terraform-provider-ct/pull/159))
* Add support for `fcos` [v1.5.0](https://coreos.github.io/butane/config-fcos-v1_5/) Butane Configs
* Add support for `flatcar` [v1.1.0](https://coreos.github.io/butane/config-flatcar-v1_1/) Butane Configs
* Remove deprecated `platform` field
* Move implementation to an `internal` package ([#157](https://github.com/poseidon/terraform-provider-ct/pull/157))

Expand Down
6 changes: 3 additions & 3 deletions docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ terraform {
required_providers {
ct = {
source = "poseidon/ct"
version = "0.12.0"
version = "0.13.0"
}
}
}
Expand All @@ -23,7 +23,7 @@ Define a Butane config for Fedora CoreOS or Flatcar Linux:

```yaml
variant: fcos
version: 1.4.0
version: 1.5.0
passwd:
users:
- name: core
Expand All @@ -33,7 +33,7 @@ passwd:
```yaml
variant: flatcar
version: 1.0.0
version: 1.1.0
passwd:
users:
- name: core
Expand Down
2 changes: 1 addition & 1 deletion examples/content/fcos-snippet.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
variant: fcos
version: 1.4.0
version: 1.5.0
storage:
files:
- path: /etc/zincati/config.d/90-disable-feature.toml
Expand Down
2 changes: 1 addition & 1 deletion examples/content/fcos.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
variant: fcos
version: 1.4.0
version: 1.5.0
storage:
filesystems:
- path: /
Expand Down
2 changes: 1 addition & 1 deletion examples/content/flatcar-snippet.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
variant: flatcar
version: 1.0.0
version: 1.1.0
storage:
files:
- path: "/etc/coreos/update.conf"
Expand Down
2 changes: 1 addition & 1 deletion examples/content/flatcar.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
variant: flatcar
version: 1.0.0
version: 1.1.0
storage:
filesystems:
- path: /
Expand Down

0 comments on commit 2b64800

Please sign in to comment.