Skip to content

Commit

Permalink
Bump version to 6.0.0 (#459)
Browse files Browse the repository at this point in the history
  • Loading branch information
aaron-lane authored Jul 8, 2021
1 parent 0871af5 commit a104060
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 5 deletions.
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@ adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).

## [Unreleased][unreleased]

## [6.0.0] - 2021-07-07

### Added

- Support for Ruby 3.0.
Expand Down Expand Up @@ -797,7 +799,8 @@ Gandalf the Free-As-In-Beer

- Initial release

[unreleased]: https://github.com/newcontext/kitchen-terraform/compare/v5.8.0...HEAD
[unreleased]: https://github.com/newcontext/kitchen-terraform/compare/v6.0.0...HEAD
[6.0.0]: https://github.com/newcontext/kitchen-terraform/compare/v5.8.0...v6.0.0
[5.8.0]: https://github.com/newcontext/kitchen-terraform/compare/v5.7.2...v5.8.0
[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
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ example.
> Installing Kitchen-Terraform with RubyGems
```sh
gem install kitchen-terraform --version 5.8.0
gem install kitchen-terraform --version 6.0.0
```

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.8.0" if not @value
self.value = ::Gem::Version.new "6.0.0" 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.8.0"
::Gem::Version.new "6.0.0"
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.8.0"
expect(described_class.instance_variable_get(:@plugin_version)).to eq "6.0.0"
end
end

Expand Down

0 comments on commit a104060

Please sign in to comment.