From e24772e4b7c63185ef3e40a55e0dfd5b9073548c Mon Sep 17 00:00:00 2001 From: Alex Pop Date: Sat, 30 Apr 2016 02:02:29 +0100 Subject: [PATCH] releasing 0.20.1 --- CHANGELOG.md | 27 +++++++++++++++++++++------ Gemfile | 1 + lib/inspec/version.rb | 2 +- 3 files changed, 23 insertions(+), 7 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d550c5bc0..631764918 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,12 +1,26 @@ # Change Log -## [0.20.0](https://github.com/chef/inspec/tree/0.20.0) (2016-04-29) -[Full Changelog](https://github.com/chef/inspec/compare/v0.19.3...0.20.0) +## [0.20.1](https://github.com/chef/inspec/tree/0.20.1) (2016-04-30) +[Full Changelog](https://github.com/chef/inspec/compare/v0.20.0...0.20.1) **Implemented enhancements:** +- Add basename parameter and add tests [\#701](https://github.com/chef/inspec/pull/701) ([alexpop](https://github.com/alexpop)) + +**Fixed bugs:** + +- fix appveyor caching [\#700](https://github.com/chef/inspec/pull/700) ([arlimus](https://github.com/arlimus)) + +## [v0.20.0](https://github.com/chef/inspec/tree/v0.20.0) (2016-04-29) +[Full Changelog](https://github.com/chef/inspec/compare/v0.19.3...v0.20.0) + +**Implemented enhancements:** + +- update to train's new file interface: symlink + uid + gid [\#694](https://github.com/chef/inspec/pull/694) ([arlimus](https://github.com/arlimus)) +- validate target backend [\#688](https://github.com/chef/inspec/pull/688) ([arlimus](https://github.com/arlimus)) - `where { field op value }` for filter table [\#684](https://github.com/chef/inspec/pull/684) ([arlimus](https://github.com/arlimus)) - add `shell -c` for executing calls against the inspec api [\#683](https://github.com/chef/inspec/pull/683) ([arlimus](https://github.com/arlimus)) +- Hpux [\#682](https://github.com/chef/inspec/pull/682) ([Anirudh-Gupta](https://github.com/Anirudh-Gupta)) - Add table-style filter utility [\#681](https://github.com/chef/inspec/pull/681) ([arlimus](https://github.com/arlimus)) - added hpux user and package resource support [\#678](https://github.com/chef/inspec/pull/678) ([Anirudh-Gupta](https://github.com/Anirudh-Gupta)) @@ -22,10 +36,8 @@ **Merged pull requests:** +- 0.20.0 [\#698](https://github.com/chef/inspec/pull/698) ([arlimus](https://github.com/arlimus)) - update appveyor ruby to 2.2 + fix caching [\#697](https://github.com/chef/inspec/pull/697) ([arlimus](https://github.com/arlimus)) -- update to train's new file interface: symlink + uid + gid [\#694](https://github.com/chef/inspec/pull/694) ([arlimus](https://github.com/arlimus)) -- validate target backend [\#688](https://github.com/chef/inspec/pull/688) ([arlimus](https://github.com/arlimus)) -- Hpux [\#682](https://github.com/chef/inspec/pull/682) ([Anirudh-Gupta](https://github.com/Anirudh-Gupta)) ## [v0.19.3](https://github.com/chef/inspec/tree/v0.19.3) (2016-04-22) [Full Changelog](https://github.com/chef/inspec/compare/v0.19.2...v0.19.3) @@ -807,7 +819,7 @@ - Massively improve README [\#208](https://github.com/chef/inspec/pull/208) ([echohack](https://github.com/echohack)) ## [0.9.1](https://github.com/chef/inspec/tree/0.9.1) (2015-11-04) -[Full Changelog](https://github.com/chef/inspec/compare/0.9.0...0.9.1) +[Full Changelog](https://github.com/chef/inspec/compare/v0.9.1...0.9.1) **Closed issues:** @@ -825,6 +837,9 @@ - update table style [\#202](https://github.com/chef/inspec/pull/202) ([chris-rock](https://github.com/chris-rock)) - Apache 2.0 LICENSE [\#201](https://github.com/chef/inspec/pull/201) ([jamesc](https://github.com/jamesc)) +## [v0.9.1](https://github.com/chef/inspec/tree/v0.9.1) (2015-11-03) +[Full Changelog](https://github.com/chef/inspec/compare/0.9.0...v0.9.1) + ## [0.9.0](https://github.com/chef/inspec/tree/0.9.0) (2015-11-03) [Full Changelog](https://github.com/chef/inspec/compare/0.8.0...0.9.0) diff --git a/Gemfile b/Gemfile index 95062ec12..6ed7325a4 100644 --- a/Gemfile +++ b/Gemfile @@ -27,6 +27,7 @@ end group :tools do gem 'pry', '~> 0.10' + gem 'rb-readline' gem 'license_finder' gem 'github_changelog_generator', '~> 1' end diff --git a/lib/inspec/version.rb b/lib/inspec/version.rb index b7b6c320d..fe6c744f9 100644 --- a/lib/inspec/version.rb +++ b/lib/inspec/version.rb @@ -3,5 +3,5 @@ # author: Christoph Hartmann module Inspec - VERSION = '0.20.0'.freeze + VERSION = '0.20.1'.freeze end