diff --git a/CHANGELOG.md b/CHANGELOG.md index 08ef794c3..45d036469 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,10 +1,10 @@ # Change Log - -## [v4.16.9](https://github.com/inspec/inspec/tree/v4.16.9) (2019-09-10) + +## [v4.16.10](https://github.com/inspec/inspec/tree/v4.16.10) (2019-09-10) #### Merged Pull Requests -- waivers: functional test fixture and eval-time skipping [#4427](https://github.com/inspec/inspec/pull/4427) ([clintoncwolfe](https://github.com/clintoncwolfe)) +- Rough draft on waiver input [#4437](https://github.com/inspec/inspec/pull/4437) ([zenspider](https://github.com/zenspider)) @@ -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 +- 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)) - Try to decode archive contents to UTF-8 to avoid encoding corruption. [#4451](https://github.com/inspec/inspec/pull/4451) ([zenspider](https://github.com/zenspider)) diff --git a/VERSION b/VERSION index dcae1fa8f..493bc13ee 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -4.16.9 \ No newline at end of file +4.16.10 \ 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 5a7530ebd..c4a0665f0 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.9".freeze + VERSION = "4.16.10".freeze end diff --git a/lib/inspec/version.rb b/lib/inspec/version.rb index d4718fe9d..0b8fea252 100644 --- a/lib/inspec/version.rb +++ b/lib/inspec/version.rb @@ -1,3 +1,3 @@ module Inspec - VERSION = "4.16.9".freeze + VERSION = "4.16.10".freeze end