Skip to content

Commit

Permalink
v4.9.0 (#347)
Browse files Browse the repository at this point in the history
* Update version to 4.9.0

* Update Gemfile.locks
  • Loading branch information
aaron-lane authored May 27, 2019
1 parent 7628cb7 commit ac37fed
Show file tree
Hide file tree
Showing 8 changed files with 15 additions and 12 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]

## [4.9.0] - 2019-05-27

### Added

- Support for Terraform v0.12.
Expand Down Expand Up @@ -670,7 +672,8 @@ Gandalf the Free-As-In-Beer

- Initial release

[unreleased]: https://github.com/newcontext/kitchen-terraform/compare/v4.8.1...HEAD
[unreleased]: https://github.com/newcontext/kitchen-terraform/compare/v4.9.0...HEAD
[4.9.0]: https://github.com/newcontext/kitchen-terraform/compare/v4.8.1...v4.9.0
[4.8.1]: https://github.com/newcontext/kitchen-terraform/compare/v4.8.0...v4.8.1
[4.8.0]: https://github.com/newcontext/kitchen-terraform/compare/v4.7.0...v4.8.0
[4.7.0]: https://github.com/newcontext/kitchen-terraform/compare/v4.6.0...v4.7.0
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 @@ -72,7 +72,7 @@ def temporarily_override(version:)

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

Expand Down
4 changes: 2 additions & 2 deletions ruby-2.3/Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ GIT
PATH
remote: ..
specs:
kitchen-terraform (4.8.1)
kitchen-terraform (4.9.0)
dry-types (~> 0.14.0)
dry-validation (= 0.13.0)
inspec (~> 3.0)
Expand Down Expand Up @@ -320,7 +320,7 @@ GEM
method_source (~> 0.9.0)
pry-coolline (0.2.5)
coolline (~> 0.5)
public_suffix (3.0.3)
public_suffix (3.1.0)
pusher-client (0.6.2)
json
websocket (~> 1.0)
Expand Down
4 changes: 2 additions & 2 deletions ruby-2.4/Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ GIT
PATH
remote: ..
specs:
kitchen-terraform (4.8.1)
kitchen-terraform (4.9.0)
dry-types (~> 0.14.0)
dry-validation (= 0.13.0)
inspec (~> 3.0)
Expand Down Expand Up @@ -320,7 +320,7 @@ GEM
method_source (~> 0.9.0)
pry-coolline (0.2.5)
coolline (~> 0.5)
public_suffix (3.0.3)
public_suffix (3.1.0)
pusher-client (0.6.2)
json
websocket (~> 1.0)
Expand Down
4 changes: 2 additions & 2 deletions ruby-2.5/Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ GIT
PATH
remote: ..
specs:
kitchen-terraform (4.8.1)
kitchen-terraform (4.9.0)
dry-types (~> 0.14.0)
dry-validation (= 0.13.0)
inspec (~> 3.0)
Expand Down Expand Up @@ -319,7 +319,7 @@ GEM
method_source (~> 0.9.0)
pry-coolline (0.2.5)
coolline (~> 0.5)
public_suffix (3.0.3)
public_suffix (3.1.0)
pusher-client (0.6.2)
json
websocket (~> 1.0)
Expand Down
4 changes: 2 additions & 2 deletions ruby-2.6/Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ GIT
PATH
remote: ..
specs:
kitchen-terraform (4.8.1)
kitchen-terraform (4.9.0)
dry-types (~> 0.14.0)
dry-validation (= 0.13.0)
inspec (~> 3.0)
Expand Down Expand Up @@ -320,7 +320,7 @@ GEM
method_source (~> 0.9.0)
pry-coolline (0.2.5)
coolline (~> 0.5)
public_suffix (3.0.3)
public_suffix (3.1.0)
pusher-client (0.6.2)
json
websocket (~> 1.0)
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 "4.8.1"
::Gem::Version.new "4.9.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 @@ -34,7 +34,7 @@
end

it "equals the gem version" do
expect(subject.instance_variable_get(:@plugin_version)).to eq "4.8.1"
expect(subject.instance_variable_get(:@plugin_version)).to eq "4.9.0"
end
end

Expand Down

0 comments on commit ac37fed

Please sign in to comment.