mirror of
https://github.com/inspec/inspec
synced 2024-11-23 05:03:07 +00:00
commit
a19944009e
5 changed files with 29 additions and 5 deletions
|
@ -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
|
||||
|
|
24
CHANGELOG.md
24
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:**
|
||||
|
||||
|
|
4
Gemfile
4
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')
|
||||
|
|
|
@ -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'
|
||||
|
|
|
@ -3,5 +3,5 @@
|
|||
# author: Christoph Hartmann
|
||||
|
||||
module Inspec
|
||||
VERSION = '0.19.0'.freeze
|
||||
VERSION = '0.19.1'.freeze
|
||||
end
|
||||
|
|
Loading…
Reference in a new issue