diff --git a/CHANGELOG.md b/CHANGELOG.md index a0a42c82a..6722bab6f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,18 +1,17 @@ # Change Log - -## [v4.18.5](https://github.com/inspec/inspec/tree/v4.18.5) (2019-10-17) + +## [v4.18.6](https://github.com/inspec/inspec/tree/v4.18.6) (2019-10-18) #### Merged Pull Requests -- Use a good profile with inspec check test [#4612](https://github.com/inspec/inspec/pull/4612) ([miah](https://github.com/miah)) -- Dont trigger yet [#4611](https://github.com/inspec/inspec/pull/4611) ([miah](https://github.com/miah)) -- Empty resources yml until I build it. [#4610](https://github.com/inspec/inspec/pull/4610) ([miah](https://github.com/miah)) +- Refactored and added an alternative test mock resource system. [#4566](https://github.com/inspec/inspec/pull/4566) ([zenspider](https://github.com/zenspider)) ### Changes since 4.18.0 release #### Merged Pull Requests +- Refactored and added an alternative test mock resource system. [#4566](https://github.com/inspec/inspec/pull/4566) ([zenspider](https://github.com/zenspider)) - Use a good profile with inspec check test [#4612](https://github.com/inspec/inspec/pull/4612) ([miah](https://github.com/miah)) - Dont trigger yet [#4611](https://github.com/inspec/inspec/pull/4611) ([miah](https://github.com/miah)) - Empty resources yml until I build it. [#4610](https://github.com/inspec/inspec/pull/4610) ([miah](https://github.com/miah)) diff --git a/VERSION b/VERSION index 3c6cd2e55..87e0b90ab 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -4.18.5 \ No newline at end of file +4.18.6 \ 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 0fe7a7269..26bec592b 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.5".freeze + VERSION = "4.18.6".freeze end diff --git a/lib/inspec/version.rb b/lib/inspec/version.rb index 9f44faecc..24ed18c5e 100644 --- a/lib/inspec/version.rb +++ b/lib/inspec/version.rb @@ -1,3 +1,3 @@ module Inspec - VERSION = "4.18.5".freeze + VERSION = "4.18.6".freeze end