diff --git a/CHANGELOG.md b/CHANGELOG.md index c42d5b14d..f11008332 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,13 +1,11 @@ # Change Log - -## [v6.4.80](https://github.com/inspec/inspec/tree/v6.4.80) (2023-11-07) + +## [v6.4.81](https://github.com/inspec/inspec/tree/v6.4.81) (2023-11-08) #### Merged Pull Requests -- CHEF-6437: Implement different version of `inspec export` [#6816](https://github.com/inspec/inspec/pull/6816) ([ahasunos](https://github.com/ahasunos)) -- CHEF-3745: Update supported platforms list to include RHEL 9 [#6846](https://github.com/inspec/inspec/pull/6846) ([ahasunos](https://github.com/ahasunos)) -- CHEF-7281: Remove references to MacOS 10.15 in docs [#6845](https://github.com/inspec/inspec/pull/6845) ([ahasunos](https://github.com/ahasunos)) +- CHEF-7694 (CHEF-8271) : Fix security_policy resource returns array for non comma separated values [#6838](https://github.com/inspec/inspec/pull/6838) ([Vasu1105](https://github.com/Vasu1105)) ## [v6.4.48](https://github.com/inspec/inspec/tree/v6.4.48) (2023-08-22) @@ -40,6 +38,7 @@ ### Changes since 5.22.13 release #### Merged Pull Requests +- CHEF-7694 (CHEF-8271) : Fix security_policy resource returns array for non comma separated values [#6838](https://github.com/inspec/inspec/pull/6838) ([Vasu1105](https://github.com/Vasu1105)) - CHEF-6437: Implement different version of `inspec export` [#6816](https://github.com/inspec/inspec/pull/6816) ([ahasunos](https://github.com/ahasunos)) - CHEF-3745: Update supported platforms list to include RHEL 9 [#6846](https://github.com/inspec/inspec/pull/6846) ([ahasunos](https://github.com/ahasunos)) - CHEF-7281: Remove references to MacOS 10.15 in docs [#6845](https://github.com/inspec/inspec/pull/6845) ([ahasunos](https://github.com/ahasunos)) diff --git a/VERSION b/VERSION index acab2be7b..ba314df8d 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -6.4.80 \ No newline at end of file +6.4.81 \ 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 c7d4de27b..390853bcd 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 = "6.4.80".freeze + VERSION = "6.4.81".freeze end diff --git a/lib/inspec/version.rb b/lib/inspec/version.rb index 7cd6ec145..169567685 100644 --- a/lib/inspec/version.rb +++ b/lib/inspec/version.rb @@ -1,3 +1,3 @@ module Inspec - VERSION = "6.4.80".freeze + VERSION = "6.4.81".freeze end