Skip to content

Commit

Permalink
Update CHANGES to prepare for v0.3.1 release
Browse files Browse the repository at this point in the history
  • Loading branch information
dghubble committed Mar 3, 2019
1 parent 07643dc commit aa2bc7c
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 9 deletions.
21 changes: 16 additions & 5 deletions CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,19 +2,30 @@

Notable changes between releases.

## v0.3.0 (2018-04-25)
## v0.3.1

* Render Ignition Configs at Ingition 2.2.0
* Document usage with the Terraform [3rd-party plugin](https://www.terraform.io/docs/configuration/providers.html#third-party-plugins) directory ([#35](https://github.com/coreos/terraform-provider-ct/pull/35))
* Provide pre-compiled binaries from Go v1.11.5
* Add windows release binaries

## v0.3.0

* Render Ignition Configs at Ingition v2.2.0
* Add `snippets` field for appending Container Linux Configs to `content` ([#22](https://github.com/coreos/terraform-provider-ct/pull/22))
* Update `ct` to v0.8.0
* Add `snippets` field, a list of Container Linux Configs additively appended to the Container Linux Config in `content`

## v0.2.0 (2017-08-03)
## v0.2.1

* Add `snippets` field for appending Container Linux Configs to `content` ([#22](https://github.com/coreos/terraform-provider-ct/pull/22))

## v0.2.0

* Render Ignition Configs at Ignition v2.0.0
* Add `platform` field to the `ct_config` data source
* Add support for platform [dynamic templating](https://coreos.com/os/docs/latest/dynamic-data.html)
* Update to support Terraform v0.9.2+
* Update Container Linux `ct` to v0.3.1

## v0.1.0 (2016-11-11)
## v0.1.0

Initial release as `tf-provider-fuze`.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
Add the `terraform-provider-ct` plugin binary for your system to the Terraform 3rd-party [plugin directory](https://www.terraform.io/docs/configuration/providers.html#third-party-plugins) `~/.terraform.d/plugins`.

```sh
VERSION=v0.3.0
VERSION=v0.3.1
wget https://github.com/coreos/terraform-provider-ct/releases/download/$VERSION/terraform-provider-ct-$VERSION-linux-amd64.tar.gz
tar xzf terraform-provider-ct-$VERSION-linux-amd64.tar.gz
mv terraform-provider-ct-$VERSION-linux-amd64/terraform-provider-ct ~/.terraform.d/plugins/terraform-provider-ct_$VERSION
Expand All @@ -23,8 +23,8 @@ Terraform plugin binary names are versioned to allow for migrations of managed i
$ tree ~/.terraform.d/
/home/user/.terraform.d/
└── plugins
├── terraform-provider-ct_v0.2.1
└── terraform-provider-ct_v0.3.0
├── terraform-provider-ct_v0.3.0
└── terraform-provider-ct_v0.3.1
```

## Usage
Expand All @@ -33,7 +33,7 @@ Configure the ct provider in a `providers.tf` file.

```hcl
provider "ct" {
version = "0.3.0"
version = "0.3.1"
}
```

Expand Down

0 comments on commit aa2bc7c

Please sign in to comment.