diff --git a/CHANGELOG.md b/CHANGELOG.md index 6ca3b1bed..413af5ab9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,16 +1,17 @@ # Change Log - -## [v5.14.5](https://github.com/inspec/inspec/tree/v5.14.5) (2022-05-05) + +## [v5.15.0](https://github.com/inspec/inspec/tree/v5.15.0) (2022-05-06) #### Merged Pull Requests -- Add a sample validation key, to be used in testing key fetching [#6030](https://github.com/inspec/inspec/pull/6030) ([clintoncwolfe](https://github.com/clintoncwolfe)) +- CFINSPEC-96: Add `zfs` resource [#6004](https://github.com/inspec/inspec/pull/6004) ([ahasunos](https://github.com/ahasunos)) ### Changes since 5.14.0 release #### Merged Pull Requests +- CFINSPEC-96: Add `zfs` resource [#6004](https://github.com/inspec/inspec/pull/6004) ([ahasunos](https://github.com/ahasunos)) - Add a sample validation key, to be used in testing key fetching [#6030](https://github.com/inspec/inspec/pull/6030) ([clintoncwolfe](https://github.com/clintoncwolfe)) - Bump berkshelf from 7.2.2 to 8.0.0 in /omnibus [#6020](https://github.com/inspec/inspec/pull/6020) ([dependabot[bot]](https://github.com/dependabot[bot])) - Fix for issue 5809 Service checks failing on Amazon linux 2022 [#5998](https://github.com/inspec/inspec/pull/5998) ([ahasunos](https://github.com/ahasunos)) diff --git a/VERSION b/VERSION index a56567399..e0cb00460 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -5.14.5 \ No newline at end of file +5.15.0 \ 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 9898a04aa..103b481e9 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("..", __dir__) - VERSION = "5.14.5".freeze + VERSION = "5.15.0".freeze end diff --git a/lib/inspec/version.rb b/lib/inspec/version.rb index 82c9cb11c..08df1e277 100644 --- a/lib/inspec/version.rb +++ b/lib/inspec/version.rb @@ -1,3 +1,3 @@ module Inspec - VERSION = "5.14.5".freeze + VERSION = "5.15.0".freeze end