Skip to content

Commit

Permalink
0.15.1
Browse files Browse the repository at this point in the history
  • Loading branch information
chris-rock committed Sep 5, 2016
1 parent 74eef9f commit 6efe309
Show file tree
Hide file tree
Showing 3 changed files with 30 additions and 3 deletions.
18 changes: 16 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,21 @@
# Change Log

## [0.15.0](https://github.com/chef/kitchen-inspec/tree/0.15.0) (2016-07-15)
[Full Changelog](https://github.com/chef/kitchen-inspec/compare/v0.14.0...0.15.0)
## [0.15.1](https://github.com/chef/kitchen-inspec/tree/0.15.1) (2016-09-05)
[Full Changelog](https://github.com/chef/kitchen-inspec/compare/v0.15.0...0.15.1)

**Closed issues:**

- Kitchen verify/test fails when using the command resource with curl [\#100](https://github.com/chef/kitchen-inspec/issues/100)
- Default to \( progress | documentation \) format for test-kitchen inspec verifier [\#91](https://github.com/chef/kitchen-inspec/issues/91)

**Merged pull requests:**

- Require Ruby 2.1+ [\#99](https://github.com/chef/kitchen-inspec/pull/99) ([tas50](https://github.com/tas50))
- Switch from finstyle / rubocop to chefstyle [\#98](https://github.com/chef/kitchen-inspec/pull/98) ([tas50](https://github.com/tas50))
- Update winrm password key for winrm-v2 [\#94](https://github.com/chef/kitchen-inspec/pull/94) ([mwrock](https://github.com/mwrock))

## [v0.15.0](https://github.com/chef/kitchen-inspec/tree/v0.15.0) (2016-07-15)
[Full Changelog](https://github.com/chef/kitchen-inspec/compare/v0.14.0...v0.15.0)

**Fixed bugs:**

Expand Down
13 changes: 13 additions & 0 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,19 @@
source "https://rubygems.org"
gemspec

# pin dependency for Ruby 1.9.3 since bundler is not
# detecting that net-ssh 3 does not work with 1.9.3
if Gem::Version.new(RUBY_VERSION) <= Gem::Version.new('1.9.3')
gem 'net-ssh', '~> 2.9'
end

if Gem::Version.new(RUBY_VERSION) < Gem::Version.new('2.2.2')
gem 'json', '< 2.0'
gem 'rack', '< 2.0'
gem 'ruby_dep', '< 1.4.0'
gem 'listen', '< 3.0.0'
end

group :guard do
gem "guard-rspec", :require => nil
gem "guard-rubocop", :require => nil
Expand Down
2 changes: 1 addition & 1 deletion lib/kitchen/verifier/inspec_version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,6 @@
module Kitchen
module Verifier
# Version string for InSpec Kitchen verifier
INSPEC_VERSION = "0.15.0"
INSPEC_VERSION = '0.15.1'
end
end

0 comments on commit 6efe309

Please sign in to comment.