Skip to content

Commit

Permalink
Prepare release 1.6.0 (#90)
Browse files Browse the repository at this point in the history
Prepares the codebase for 1.6.0 release.
  • Loading branch information
rgreinho authored Jan 6, 2022
1 parent cf8c21f commit 5df4e66
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 4 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [1.6.0] - 2021-01-06

### Added

* Added support for TFE_ADDRESS and TFE_BASEPATH environment variables. [#89]

## [1.5.0] - 2021-01-12

### Added
Expand Down Expand Up @@ -88,6 +94,7 @@ Initial version with support for managing:
[1.4.1]: https://github.com/rgreinho/tfe-cli/releases/tag/1.4.1
[1.4.2]: https://github.com/rgreinho/tfe-cli/releases/tag/1.4.2
[1.5.0]: https://github.com/rgreinho/tfe-cli/releases/tag/1.5.0
[1.6.0]: https://github.com/rgreinho/tfe-cli/releases/tag/1.6.0

[//]: # (Issue/PR links)
[#14]: https://github.com/rgreinho/tfe-cli/pull/14
Expand All @@ -104,3 +111,4 @@ Initial version with support for managing:
[#37]: https://github.com/rgreinho/tfe-cli/pull/37
[#38]: https://github.com/rgreinho/tfe-cli/pull/38
[#40]: https://github.com/rgreinho/tfe-cli/pull/40
[#89]: https://github.com/rgreinho/tfe-cli/pull/89
6 changes: 4 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,11 @@ For Windows, download the binary from the [release page](https://github.com/rgre
* `TFE_ORG`: Terraform Enterprise organization
* `TFE_LOG_LEVEL`: Logging level (valid values are `debug`, `info`, `warn`, `error`,
`fatal`, `panic`)
* `TFE_ADDRESS`: Terraform Enterprise API address
* `TFE_BASEPATH`: Base path on which the Terraform Enterprise API is served.

These values can also be specified on the command line. In this case, the environment
variables are ignored.
Some of these values can also be specified on the command line. In this case, the
environment variables are ignored.

## Management commands

Expand Down
1 change: 1 addition & 0 deletions magefile.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
//go:build mage
// +build mage

package main
Expand Down
4 changes: 2 additions & 2 deletions tfecli/core.go
Original file line number Diff line number Diff line change
Expand Up @@ -45,8 +45,8 @@ func newClient(token string) (*tfe.Client, error) {

// Prepare TFE config.
config := &tfe.Config{
Token: token,
Address: Address,
Token: token,
Address: Address,
BasePath: BasePath,
}

Expand Down

0 comments on commit 5df4e66

Please sign in to comment.