Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

0.11.0 #38

Merged
merged 4 commits into from
Feb 8, 2016
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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