diff --git a/CHANGELOG.md b/CHANGELOG.md index 00247f353..aed45e640 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,10 +1,10 @@ # Change Log - -## [v4.16.3](https://github.com/inspec/inspec/tree/v4.16.3) (2019-09-05) + +## [v4.16.4](https://github.com/inspec/inspec/tree/v4.16.4) (2019-09-05) #### Merged Pull Requests -- Fixed the formatting of `inspec exec -h` by not using long_desc. [#4436](https://github.com/inspec/inspec/pull/4436) ([zenspider](https://github.com/zenspider)) +- Guard against nil in apt repo parser. [#4435](https://github.com/inspec/inspec/pull/4435) ([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 +- Guard against nil in apt repo parser. [#4435](https://github.com/inspec/inspec/pull/4435) ([zenspider](https://github.com/zenspider)) - Fixed the formatting of `inspec exec -h` by not using long_desc. [#4436](https://github.com/inspec/inspec/pull/4436) ([zenspider](https://github.com/zenspider)) - Extended skip_windows to the end of September. [#4441](https://github.com/inspec/inspec/pull/4441) ([zenspider](https://github.com/zenspider)) - update LCR Roadtrip announcement to 13 cities [#4440](https://github.com/inspec/inspec/pull/4440) ([shaunyap](https://github.com/shaunyap)) diff --git a/VERSION b/VERSION index 5b33ac526..2bd63a3b4 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -4.16.3 \ No newline at end of file +4.16.4 \ 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 361d19985..94621db59 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.3".freeze + VERSION = "4.16.4".freeze end diff --git a/lib/inspec/version.rb b/lib/inspec/version.rb index 96275dada..fc7d696e5 100644 --- a/lib/inspec/version.rb +++ b/lib/inspec/version.rb @@ -1,3 +1,3 @@ module Inspec - VERSION = "4.16.3".freeze + VERSION = "4.16.4".freeze end