Skip to content

Commit a64fea7

Browse files
committed
Prepare release for 1.1.0
1 parent 461b83f commit a64fea7

File tree

2 files changed

+12
-6
lines changed

2 files changed

+12
-6
lines changed

CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# Change Log
22

3+
## 1.1 - 2019-05-27
4+
5+
### Added
6+
7+
- Integration with Terraform `v0.12`
8+
39
## 1.0 - 2018-06-17
410

511
### Added

README.md

+6-6
Original file line numberDiff line numberDiff line change
@@ -134,15 +134,15 @@ resource "null_resource" "updates" {
134134

135135
### Download
136136
```bash
137-
$ 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"
137+
$ 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"
138138
$ chmod +x ./terraform-provider-stateful*
139139
```
140140

141141
### Init
142142
```bash
143143
$ ls -1
144144
main.tf
145-
terraform-provider-stateful_v1.0.0-linux-amd64
145+
terraform-provider-stateful_v1.1.0-linux-amd64
146146

147147
$ terraform init
148148

@@ -442,7 +442,7 @@ $ go mod tidy
442442
443443
```bash
444444
$ make clean format test
445-
rm -rf ./release terraform-provider-stateful_v1.0.0
445+
rm -rf ./release terraform-provider-stateful_v1.1.0
446446
go fmt ./...
447447
go test -v ./...
448448
? github.com/ashald/terraform-provider-stateful [no test files]
@@ -459,7 +459,7 @@ $ make clean format test
459459
In order to build plugin for the current platform use [GNU]make:
460460
```bash
461461
$ make build
462-
go build -o terraform-provider-stateful_v1.0.0
462+
go build -o terraform-provider-stateful_v1.1.0
463463

464464
```
465465
@@ -473,8 +473,8 @@ executed against a configuration in the same directory.
473473
In order to prepare provider binaries for all platforms:
474474
```bash
475475
$ make release
476-
GOOS=darwin GOARCH=amd64 go build -o './release/terraform-provider-stateful_v1.0.0-darwin-amd64'
477-
GOOS=linux GOARCH=amd64 go build -o './release/terraform-provider-stateful_v1.0.0-linux-amd64'
476+
GOOS=darwin GOARCH=amd64 go build -o './release/terraform-provider-stateful_v1.1.0-darwin-amd64'
477+
GOOS=linux GOARCH=amd64 go build -o './release/terraform-provider-stateful_v1.1.0-linux-amd64'
478478
```
479479
480480
### Versioning

0 commit comments

Comments
 (0)