Skip to content
This repository has been archived by the owner on Oct 22, 2024. It is now read-only.

Commit

Permalink
5.7.2 (#447)
Browse files Browse the repository at this point in the history
* Update version to 5.7.2

* Add CHANGELOG entry for 5.7.2
  • Loading branch information
aaron-lane authored Mar 9, 2021
1 parent a4ea02b commit ec65cda
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 5 deletions.
11 changes: 10 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,14 @@ adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).

## [Unreleased][unreleased]

## [5.7.2] - 2021-03-08

### Fixed

- `TF_WARN_OUTPUT_ERRORS` is only set during when running
`terraform destroy` during `kitchen destroy`. It appears that this
change was erroneously declared as functional in 4.3.0. :grimacing:

## [5.7.1] - 2021-02-25

### Fixed
Expand Down Expand Up @@ -771,7 +779,8 @@ Gandalf the Free-As-In-Beer

- Initial release

[unreleased]: https://github.com/newcontext/kitchen-terraform/compare/v5.7.1...HEAD
[unreleased]: https://github.com/newcontext/kitchen-terraform/compare/v5.7.2...HEAD
[5.7.2]: https://github.com/newcontext/kitchen-terraform/compare/v5.7.1...v5.7.2
[5.7.1]: https://github.com/newcontext/kitchen-terraform/compare/v5.7.0...v5.7.1
[5.7.0]: https://github.com/newcontext/kitchen-terraform/compare/v5.6.0...v5.7.0
[5.6.0]: https://github.com/newcontext/kitchen-terraform/compare/v5.5.0...v5.6.0
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ example.
> Installing Kitchen-Terraform with RubyGems
```sh
gem install kitchen-terraform --version 5.7.1
gem install kitchen-terraform --version 5.7.2
```

This approach is not recommended as it requires more effort to install
Expand Down
2 changes: 1 addition & 1 deletion lib/kitchen/terraform/version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ def temporarily_override(version:)

# @api private
def value
self.value = ::Gem::Version.new "5.7.1" if not @value
self.value = ::Gem::Version.new "5.7.2" if not @value
@value
end

Expand Down
2 changes: 1 addition & 1 deletion spec/lib/kitchen/terraform/version_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
end

let :version do
::Gem::Version.new "5.7.1"
::Gem::Version.new "5.7.2"
end

describe ".assign_plugin_version" do
Expand Down
2 changes: 1 addition & 1 deletion spec/support/kitchen/terraform/configurable_examples.rb
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@

describe "@plugin_version" do
it "equals the gem version" do
expect(described_class.instance_variable_get(:@plugin_version)).to eq "5.7.1"
expect(described_class.instance_variable_get(:@plugin_version)).to eq "5.7.2"
end
end

Expand Down

0 comments on commit ec65cda

Please sign in to comment.