diff --git a/.travis.yml b/.travis.yml index d5edfbcb5..53f465a80 100644 --- a/.travis.yml +++ b/.travis.yml @@ -8,7 +8,7 @@ dist: trusty services: - docker -bundler_args: --without integration tools maintenance +bundler_args: --without integration tools maintenance --with development before_install: - gem install bundler diff --git a/CHANGELOG.md b/CHANGELOG.md index 4937a5dba..c67c16d9b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,7 +1,27 @@ # Change Log -## [0.19.0](https://github.com/chef/inspec/tree/0.19.0) (2016-04-17) -[Full Changelog](https://github.com/chef/inspec/compare/v0.18.0...0.19.0) +## [0.19.1](https://github.com/chef/inspec/tree/0.19.1) (2016-04-18) +[Full Changelog](https://github.com/chef/inspec/compare/v0.19.0...0.19.1) + +**Implemented enhancements:** + +- configure command execution shells to sh/bash/zsh [\#659](https://github.com/chef/inspec/pull/659) ([arlimus](https://github.com/arlimus)) +- be descriptive on shadow.entries [\#657](https://github.com/chef/inspec/pull/657) ([arlimus](https://github.com/arlimus)) + +**Fixed bugs:** + +- bugfix: print cmp expectations [\#656](https://github.com/chef/inspec/pull/656) ([arlimus](https://github.com/arlimus)) + +**Closed issues:** + +- gem install failure on RHEL 7.2 Ruby 2.0 [\#653](https://github.com/chef/inspec/issues/653) + +**Merged pull requests:** + +- add requirements for gem installation to readme [\#655](https://github.com/chef/inspec/pull/655) ([arlimus](https://github.com/arlimus)) + +## [v0.19.0](https://github.com/chef/inspec/tree/v0.19.0) (2016-04-17) +[Full Changelog](https://github.com/chef/inspec/compare/v0.18.0...v0.19.0) **Implemented enhancements:** diff --git a/Gemfile b/Gemfile index 95062ec12..e5d33c066 100644 --- a/Gemfile +++ b/Gemfile @@ -2,6 +2,10 @@ source 'https://rubygems.org' gemspec +group :development do + gem 'r-train', github: 'chef/train' +end + # 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') diff --git a/inspec.gemspec b/inspec.gemspec index 5dabeb2ac..f919a75a1 100644 --- a/inspec.gemspec +++ b/inspec.gemspec @@ -24,7 +24,7 @@ Gem::Specification.new do |spec| spec.test_files = spec.files.grep(%r{^(test|spec|features)/}) spec.require_paths = ['lib'] - spec.add_dependency 'r-train', '~> 0.10.4' + spec.add_dependency 'r-train', '~> 0.10.5' spec.add_dependency 'thor', '~> 0.19' spec.add_dependency 'json', '~> 1.8' spec.add_dependency 'rainbow', '~> 2' diff --git a/lib/inspec/version.rb b/lib/inspec/version.rb index df57a7be6..8298e17a9 100644 --- a/lib/inspec/version.rb +++ b/lib/inspec/version.rb @@ -3,5 +3,5 @@ # author: Christoph Hartmann module Inspec - VERSION = '0.19.0'.freeze + VERSION = '0.19.1'.freeze end