Skip to content

Commit

Permalink
Release v1.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ashald committed May 22, 2019
1 parent af087a7 commit 0d5bf5f
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 9 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.2.0 - 2019-05-21

### Added

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,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/v1.1.1/terraform-provider-consulacl_v1.1.1-$(uname -s | tr '[:upper:]' '[:lower:]')-amd64"
wget "https://github.com/ashald/terraform-provider-consulacl/releases/download/v1.2.0/terraform-provider-consulacl_v1.2.0-$(uname -s | tr '[:upper:]' '[:lower:]')-amd64"
chmod +x ./terraform-provider-transform*
```

Expand Down
8 changes: 4 additions & 4 deletions consulacl/data_source_consulacl_token_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -21,13 +21,13 @@ data "consulacl_token" "test" {

func TestIntegrationDataSourceToken(t *testing.T) {
resource.Test(t, resource.TestCase{
IsUnitTest:false,
Providers: testProviders,
PreCheck: func() { testDataSourceConsulAclTokenPreConfig(t) },
IsUnitTest: false,
Providers: testProviders,
PreCheck: func() { testDataSourceConsulAclTokenPreConfig(t) },
Steps: []resource.TestStep{
{
Config: dataSourceAclTokenConfig,
Check: resource.TestCheckResourceAttr("data.consulacl_token.test", "secret", dataSourceAclTokenSecret),
Check: resource.TestCheckResourceAttr("data.consulacl_token.test", "secret", dataSourceAclTokenSecret),
},
{
Config: "locals {}",
Expand Down
6 changes: 3 additions & 3 deletions docs/development.md
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ environment variable.
In order to build plugin for the current platform use [GNU]make:
```bash
$ make build
go build -o terraform-provider-consulacl_v1.1.1
go build -o terraform-provider-consulacl_v1.2.0

```

Expand All @@ -115,8 +115,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-consulacl_v1.1.1-darwin-amd64'
GOOS=linux GOARCH=amd64 go build -o './release/terraform-provider-consulacl_v1.1.1-linux-amd64'
GOOS=darwin GOARCH=amd64 go build -o './release/terraform-provider-consulacl_v1.2.0-darwin-amd64'
GOOS=linux GOARCH=amd64 go build -o './release/terraform-provider-consulacl_v1.2.0-linux-amd64'
```

## Versioning
Expand Down

0 comments on commit 0d5bf5f

Please sign in to comment.