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

Commit a104060

Browse files
authored
Bump version to 6.0.0 (#459)
1 parent 0871af5 commit a104060

File tree

5 files changed

+8
-5
lines changed

5 files changed

+8
-5
lines changed

CHANGELOG.md

+4-1
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@ adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
88

99
## [Unreleased][unreleased]
1010

11+
## [6.0.0] - 2021-07-07
12+
1113
### Added
1214

1315
- Support for Ruby 3.0.
@@ -797,7 +799,8 @@ Gandalf the Free-As-In-Beer
797799

798800
- Initial release
799801

800-
[unreleased]: https://github.com/newcontext/kitchen-terraform/compare/v5.8.0...HEAD
802+
[unreleased]: https://github.com/newcontext/kitchen-terraform/compare/v6.0.0...HEAD
803+
[6.0.0]: https://github.com/newcontext/kitchen-terraform/compare/v5.8.0...v6.0.0
801804
[5.8.0]: https://github.com/newcontext/kitchen-terraform/compare/v5.7.2...v5.8.0
802805
[5.7.2]: https://github.com/newcontext/kitchen-terraform/compare/v5.7.1...v5.7.2
803806
[5.7.1]: https://github.com/newcontext/kitchen-terraform/compare/v5.7.0...v5.7.1

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ example.
101101
> Installing Kitchen-Terraform with RubyGems
102102
103103
```sh
104-
gem install kitchen-terraform --version 5.8.0
104+
gem install kitchen-terraform --version 6.0.0
105105
```
106106

107107
This approach is not recommended as it requires more effort to install

lib/kitchen/terraform/version.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ def temporarily_override(version:)
7171

7272
# @api private
7373
def value
74-
self.value = ::Gem::Version.new "5.8.0" if not @value
74+
self.value = ::Gem::Version.new "6.0.0" if not @value
7575
@value
7676
end
7777

spec/lib/kitchen/terraform/version_spec.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
end
2525

2626
let :version do
27-
::Gem::Version.new "5.8.0"
27+
::Gem::Version.new "6.0.0"
2828
end
2929

3030
describe ".assign_plugin_version" do

spec/support/kitchen/terraform/configurable_examples.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626

2727
describe "@plugin_version" do
2828
it "equals the gem version" do
29-
expect(described_class.instance_variable_get(:@plugin_version)).to eq "5.8.0"
29+
expect(described_class.instance_variable_get(:@plugin_version)).to eq "6.0.0"
3030
end
3131
end
3232

0 commit comments

Comments
 (0)