Skip to content

Commit 2b64800

Browse files
committed
Prepare for v0.13.0 release
1 parent 3d57448 commit 2b64800

File tree

6 files changed

+9
-7
lines changed

6 files changed

+9
-7
lines changed

CHANGES.md

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

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

docs/index.md

Lines changed: 3 additions & 3 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.12.0"
16+
version = "0.13.0"
1717
}
1818
}
1919
}
@@ -23,7 +23,7 @@ Define a Butane config for Fedora CoreOS or Flatcar Linux:
2323

2424
```yaml
2525
variant: fcos
26-
version: 1.4.0
26+
version: 1.5.0
2727
passwd:
2828
users:
2929
- name: core
@@ -33,7 +33,7 @@ passwd:
3333
3434
```yaml
3535
variant: flatcar
36-
version: 1.0.0
36+
version: 1.1.0
3737
passwd:
3838
users:
3939
- name: core

examples/content/fcos-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.4.0
2+
version: 1.5.0
33
storage:
44
files:
55
- path: /etc/zincati/config.d/90-disable-feature.toml

examples/content/fcos.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.4.0
3+
version: 1.5.0
44
storage:
55
filesystems:
66
- path: /

examples/content/flatcar-snippet.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
variant: flatcar
2-
version: 1.0.0
2+
version: 1.1.0
33
storage:
44
files:
55
- path: "/etc/coreos/update.conf"

examples/content/flatcar.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
variant: flatcar
2-
version: 1.0.0
2+
version: 1.1.0
33
storage:
44
filesystems:
55
- path: /

0 commit comments

Comments
 (0)