diff --git a/CHANGELOG.md b/CHANGELOG.md index d38cf69a2..8b7caf2ea 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,7 +1,10 @@ # Change Log - -## Unreleased + +## [v4.18.92](https://github.com/inspec/inspec/tree/v4.18.92) (2020-02-13) + +#### Bug Fixes +- Fix auditd resource processing of action and list [#4665](https://github.com/inspec/inspec/pull/4665) ([trevor-vaughan](https://github.com/trevor-vaughan)) #### Merged Pull Requests - Build packages on Debian [#4912](https://github.com/inspec/inspec/pull/4912) ([tas50](https://github.com/tas50)) @@ -11,6 +14,7 @@ ### Changes since 4.18.85 release #### Bug Fixes +- Fix auditd resource processing of action and list [#4665](https://github.com/inspec/inspec/pull/4665) ([trevor-vaughan](https://github.com/trevor-vaughan)) - Distinguish between user plugin gems and system gems and load system gems normally. [#4898](https://github.com/inspec/inspec/pull/4898) ([zenspider](https://github.com/zenspider)) - Fix artifact-habitat testing for inspec. [#4905](https://github.com/inspec/inspec/pull/4905) ([zenspider](https://github.com/zenspider)) diff --git a/VERSION b/VERSION index f5719cd62..94f2978f4 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -4.18.91 \ No newline at end of file +4.18.92 \ 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 477ed9ed3..00a94f42c 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.18.91".freeze + VERSION = "4.18.92".freeze end diff --git a/lib/inspec/version.rb b/lib/inspec/version.rb index 72f3895b4..6ab48226b 100644 --- a/lib/inspec/version.rb +++ b/lib/inspec/version.rb @@ -1,3 +1,3 @@ module Inspec - VERSION = "4.18.91".freeze + VERSION = "4.18.92".freeze end