Skip to content

Commit

Permalink
Merge pull request #38 from chef/0.11.0
Browse files Browse the repository at this point in the history
0.11.0
  • Loading branch information
srenatus committed Feb 8, 2016
2 parents 75ef8bb + 562e280 commit 5044bd4
Show file tree
Hide file tree
Showing 5 changed files with 53 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,13 @@ services:
bundler_args: --without integration guard tools

before_install:
- gem update --system 2.4.5
- gem install bundler
- gem --version

matrix:
include:
- rvm: 1.9.3
gemfile: Gemfile
gemfile: Gemfile.193
- rvm: 2.0
gemfile: Gemfile
- rvm: 2.1
Expand Down
17 changes: 15 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,19 @@
# Change Log

## [0.10.1](https://github.com/chef/kitchen-inspec/tree/0.10.1) (2016-01-15)
[Full Changelog](https://github.com/chef/kitchen-inspec/compare/v0.10.0...0.10.1)
## [0.11.0](https://github.com/chef/kitchen-inspec/tree/0.11.0) (2016-02-02)
[Full Changelog](https://github.com/chef/kitchen-inspec/compare/v0.10.1...0.11.0)

**Implemented enhancements:**

- Add integration test with test-kitchen [\#33](https://github.com/chef/kitchen-inspec/pull/33) ([chris-rock](https://github.com/chris-rock))

**Closed issues:**

- Failures should be tagged with the instance they failed against [\#30](https://github.com/chef/kitchen-inspec/issues/30)
- kitchen verify has exit status 0 with failed examples [\#9](https://github.com/chef/kitchen-inspec/issues/9)

## [v0.10.1](https://github.com/chef/kitchen-inspec/tree/v0.10.1) (2016-01-15)
[Full Changelog](https://github.com/chef/kitchen-inspec/compare/v0.10.0...v0.10.1)

**Closed issues:**

Expand All @@ -10,6 +22,7 @@

**Merged pull requests:**

- 0.10.1 [\#34](https://github.com/chef/kitchen-inspec/pull/34) ([chris-rock](https://github.com/chris-rock))
- Allow transports which are subclasses of the core ones. [\#32](https://github.com/chef/kitchen-inspec/pull/32) ([coderanger](https://github.com/coderanger))

## [v0.10.0](https://github.com/chef/kitchen-inspec/tree/v0.10.0) (2016-01-07)
Expand Down
3 changes: 2 additions & 1 deletion Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,8 @@ group :test do
gem 'rubocop', '~> 0.32'
gem 'concurrent-ruby', '~> 0.9'
gem 'codeclimate-test-reporter', :require => nil
gem 'test-kitchen', '~> 1.4', :require => nil
# gem 'test-kitchen', '~> 1.5'
gem 'test-kitchen', git: 'https://github.com/test-kitchen/test-kitchen.git', branch: 'chris-rock/winrm-properties-fix'
end

group :integration do
Expand Down
33 changes: 33 additions & 0 deletions Gemfile.193
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
# -*- encoding: utf-8 -*-
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
gem 'net-ssh', '~> 2.9'

group :guard do
gem 'guard-rspec', :require => nil
gem 'guard-rubocop', :require => nil
end

group :test do
gem 'bundler', '~> 1.5'
gem 'minitest', '~> 5.5'
gem 'rake', '~> 10'
gem 'rubocop', '~> 0.32'
gem 'concurrent-ruby', '~> 0.9'
gem 'codeclimate-test-reporter', :require => nil
# gem 'test-kitchen', '~> 1.5'
gem 'test-kitchen', git: 'https://github.com/test-kitchen/test-kitchen.git', branch: 'chris-rock/winrm-properties-fix'
end

group :integration do
gem 'berkshelf'
gem 'kitchen-dokken'
end

group :tools do
gem 'pry', '~> 0.10'
gem 'github_changelog_generator', '~> 1'
end
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.10.1'
INSPEC_VERSION = '0.11.0'
end
end

0 comments on commit 5044bd4

Please sign in to comment.