Skip to content

Commit

Permalink
Prepare release for v1.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ashald committed Jul 30, 2019
1 parent 65ed609 commit 7d2cc5f
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Change Log

## Unreleased
## 1.4.0 - 2019-07-30

### Added

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ or it can be [installed system-wide](https://www.terraform.io/docs/configuration

The simplest way to get started is:
```bash
wget "https://github.com/ashald/terraform-provider-consulacl/releases/download/1.3.0/terraform-provider-consulacl_v1.3.0-$(uname -s | tr '[:upper:]' '[:lower:]')-amd64"
wget "https://github.com/ashald/terraform-provider-consulacl/releases/download/1.4.0/terraform-provider-consulacl_v1.4.0-$(uname -s | tr '[:upper:]' '[:lower:]')-amd64"
chmod +x ./terraform-provider-consulacl*
```

Expand Down
6 changes: 3 additions & 3 deletions docs/development.md
Original file line number Diff line number Diff line change
Expand Up @@ -110,9 +110,9 @@ executed against a configuration in the same directory.
In order to prepare provider binaries for all platforms:
```bash
$ make release
GOPROXY="off" GOFLAGS="-mod=vendor" GOOS=darwin GOARCH=amd64 go build -o './release/terraform-provider-consulacl_v1.3.0-darwin-amd64'
GOPROXY="off" GOFLAGS="-mod=vendor" GOOS=linux GOARCH=amd64 go build -o './release/terraform-provider-consulacl_v1.3.0-linux-amd64'
GOPROXY="off" GOFLAGS="-mod=vendor" GOOS=windows GOARCH=amd64 go build -o './release/terraform-provider-consulacl_v1.3.0-windows-amd64'
GOPROXY="off" GOFLAGS="-mod=vendor" GOOS=darwin GOARCH=amd64 go build -o './release/terraform-provider-consulacl_v1.4.0-darwin-amd64'
GOPROXY="off" GOFLAGS="-mod=vendor" GOOS=linux GOARCH=amd64 go build -o './release/terraform-provider-consulacl_v1.4.0-linux-amd64'
GOPROXY="off" GOFLAGS="-mod=vendor" GOOS=windows GOARCH=amd64 go build -o './release/terraform-provider-consulacl_v1.4.0-windows-amd64'
```

## Versioning
Expand Down

0 comments on commit 7d2cc5f

Please sign in to comment.