Skip to content

Commit

Permalink
Prepare release for 1.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ashald committed May 27, 2019
1 parent 461b83f commit a64fea7
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 6 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Change Log

## 1.1 - 2019-05-27

### Added

- Integration with Terraform `v0.12`

## 1.0 - 2018-06-17

### Added
Expand Down
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -134,15 +134,15 @@ resource "null_resource" "updates" {

### Download
```bash
$ wget "https://github.com/ashald/terraform-provider-stateful/releases/download/v1.0.0/terraform-provider-stateful_v1.0.0-$(uname -s | tr '[:upper:]' '[:lower:]')-amd64"
$ wget "https://github.com/ashald/terraform-provider-stateful/releases/download/v1.1.0/terraform-provider-stateful_v1.1.0-$(uname -s | tr '[:upper:]' '[:lower:]')-amd64"
$ chmod +x ./terraform-provider-stateful*
```

### Init
```bash
$ ls -1
main.tf
terraform-provider-stateful_v1.0.0-linux-amd64
terraform-provider-stateful_v1.1.0-linux-amd64

$ terraform init

Expand Down Expand Up @@ -442,7 +442,7 @@ $ go mod tidy
```bash
$ make clean format test
rm -rf ./release terraform-provider-stateful_v1.0.0
rm -rf ./release terraform-provider-stateful_v1.1.0
go fmt ./...
go test -v ./...
? github.com/ashald/terraform-provider-stateful [no test files]
Expand All @@ -459,7 +459,7 @@ $ make clean format test
In order to build plugin for the current platform use [GNU]make:
```bash
$ make build
go build -o terraform-provider-stateful_v1.0.0
go build -o terraform-provider-stateful_v1.1.0

```
Expand All @@ -473,8 +473,8 @@ executed against a configuration in the same directory.
In order to prepare provider binaries for all platforms:
```bash
$ make release
GOOS=darwin GOARCH=amd64 go build -o './release/terraform-provider-stateful_v1.0.0-darwin-amd64'
GOOS=linux GOARCH=amd64 go build -o './release/terraform-provider-stateful_v1.0.0-linux-amd64'
GOOS=darwin GOARCH=amd64 go build -o './release/terraform-provider-stateful_v1.1.0-darwin-amd64'
GOOS=linux GOARCH=amd64 go build -o './release/terraform-provider-stateful_v1.1.0-linux-amd64'
```
### Versioning
Expand Down

0 comments on commit a64fea7

Please sign in to comment.