Merge pull request #661 from chef/sr/0.19.1

version bump: 0.19.1
This commit is contained in:
Alex Pop 2016-04-18 11:04:54 +01:00
commit a19944009e
5 changed files with 29 additions and 5 deletions

View file

@ -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

View file

@ -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:**

View file

@ -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')

View file

@ -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'

View file

@ -3,5 +3,5 @@
# author: Christoph Hartmann
module Inspec
VERSION = '0.19.0'.freeze
VERSION = '0.19.1'.freeze
end