diff --git a/CHANGELOG.md b/CHANGELOG.md index 45d036469..114bbf951 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,10 +1,10 @@ # Change Log - -## [v4.16.10](https://github.com/inspec/inspec/tree/v4.16.10) (2019-09-10) + +## [v4.16.11](https://github.com/inspec/inspec/tree/v4.16.11) (2019-09-11) #### Merged Pull Requests -- Rough draft on waiver input [#4437](https://github.com/inspec/inspec/pull/4437) ([zenspider](https://github.com/zenspider)) +- json resource: Add handling for `command:` error [#3844](https://github.com/inspec/inspec/pull/3844) ([jerryaldrichiii](https://github.com/jerryaldrichiii)) @@ -14,6 +14,7 @@ - Fixed file resource raising UndefinedMethod on source_path [#4214](https://github.com/inspec/inspec/pull/4214) ([zenspider](https://github.com/zenspider)) #### Merged Pull Requests +- json resource: Add handling for `command:` error [#3844](https://github.com/inspec/inspec/pull/3844) ([jerryaldrichiii](https://github.com/jerryaldrichiii)) - Rough draft on waiver input [#4437](https://github.com/inspec/inspec/pull/4437) ([zenspider](https://github.com/zenspider)) - waivers: functional test fixture and eval-time skipping [#4427](https://github.com/inspec/inspec/pull/4427) ([clintoncwolfe](https://github.com/clintoncwolfe)) - Make inspec much faster for most commands. [#4365](https://github.com/inspec/inspec/pull/4365) ([zenspider](https://github.com/zenspider)) diff --git a/VERSION b/VERSION index 493bc13ee..4264e73d8 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -4.16.10 \ No newline at end of file +4.16.11 \ No newline at end of file diff --git a/inspec-bin/lib/inspec-bin/version.rb b/inspec-bin/lib/inspec-bin/version.rb index c4a0665f0..7be4d19ef 100644 --- a/inspec-bin/lib/inspec-bin/version.rb +++ b/inspec-bin/lib/inspec-bin/version.rb @@ -1,5 +1,5 @@ # This file managed by automation - do not edit manually module InspecBin INSPECBIN_ROOT = File.expand_path("../..", __FILE__) - VERSION = "4.16.10".freeze + VERSION = "4.16.11".freeze end diff --git a/lib/inspec/version.rb b/lib/inspec/version.rb index 0b8fea252..4da44f30d 100644 --- a/lib/inspec/version.rb +++ b/lib/inspec/version.rb @@ -1,3 +1,3 @@ module Inspec - VERSION = "4.16.10".freeze + VERSION = "4.16.11".freeze end