diff --git a/CHANGELOG.md b/CHANGELOG.md index 1e6da5e43..8a7799d15 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,9 +1,10 @@ # Change Log - -## Unreleased + +## [v4.16.14](https://github.com/inspec/inspec/tree/v4.16.14) (2019-09-13) #### Merged Pull Requests +- Fix simple typo: becuase -> because [#4484](https://github.com/inspec/inspec/pull/4484) ([timgates42](https://github.com/timgates42)) - Update rubygems and use gem env for system details. [#4475](https://github.com/inspec/inspec/pull/4475) ([zenspider](https://github.com/zenspider)) @@ -16,6 +17,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 +- Fix simple typo: becuase -> because [#4484](https://github.com/inspec/inspec/pull/4484) ([timgates42](https://github.com/timgates42)) - Update rubygems and use gem env for system details. [#4475](https://github.com/inspec/inspec/pull/4475) ([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)) - Rough draft on waiver input [#4437](https://github.com/inspec/inspec/pull/4437) ([zenspider](https://github.com/zenspider)) diff --git a/VERSION b/VERSION index f1ad97b85..d50cfa124 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -4.16.13 \ No newline at end of file +4.16.14 \ 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 5378b8278..5424987d0 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.13".freeze + VERSION = "4.16.14".freeze end diff --git a/lib/inspec/version.rb b/lib/inspec/version.rb index 5eb8cbeac..842089ed4 100644 --- a/lib/inspec/version.rb +++ b/lib/inspec/version.rb @@ -1,3 +1,3 @@ module Inspec - VERSION = "4.16.13".freeze + VERSION = "4.16.14".freeze end