This commit is contained in:
Stephan Renatus 2016-04-18 11:39:52 +02:00
parent 3ef64af166
commit f7272f746c
3 changed files with 24 additions and 4 deletions

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

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