This repository was archived by the owner on Oct 22, 2024. It is now read-only.
File tree 5 files changed +8
-5
lines changed
support/kitchen/terraform
5 files changed +8
-5
lines changed Original file line number Diff line number Diff line change @@ -8,6 +8,8 @@ adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
8
8
9
9
## [ Unreleased] [ unreleased ]
10
10
11
+ ## [ 6.0.0] - 2021-07-07
12
+
11
13
### Added
12
14
13
15
- Support for Ruby 3.0.
@@ -797,7 +799,8 @@ Gandalf the Free-As-In-Beer
797
799
798
800
- Initial release
799
801
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
801
804
[ 5.8.0 ] : https://github.com/newcontext/kitchen-terraform/compare/v5.7.2...v5.8.0
802
805
[ 5.7.2 ] : https://github.com/newcontext/kitchen-terraform/compare/v5.7.1...v5.7.2
803
806
[ 5.7.1 ] : https://github.com/newcontext/kitchen-terraform/compare/v5.7.0...v5.7.1
Original file line number Diff line number Diff line change @@ -101,7 +101,7 @@ example.
101
101
> Installing Kitchen-Terraform with RubyGems
102
102
103
103
``` sh
104
- gem install kitchen-terraform --version 5.8 .0
104
+ gem install kitchen-terraform --version 6.0 .0
105
105
```
106
106
107
107
This approach is not recommended as it requires more effort to install
Original file line number Diff line number Diff line change @@ -71,7 +71,7 @@ def temporarily_override(version:)
71
71
72
72
# @api private
73
73
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
75
75
@value
76
76
end
77
77
Original file line number Diff line number Diff line change 24
24
end
25
25
26
26
let :version do
27
- ::Gem ::Version . new "5.8 .0"
27
+ ::Gem ::Version . new "6.0 .0"
28
28
end
29
29
30
30
describe ".assign_plugin_version" do
Original file line number Diff line number Diff line change 26
26
27
27
describe "@plugin_version" do
28
28
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"
30
30
end
31
31
end
32
32
You can’t perform that action at this time.
0 commit comments