diff --git a/CHANGELOG.md b/CHANGELOG.md index 1c078f7c3..64a56ac98 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,11 +1,11 @@ # Change Log - -## [v6.6.0](https://github.com/inspec/inspec/tree/v6.6.0) (2023-11-09) + +## [v6.6.1](https://github.com/inspec/inspec/tree/v6.6.1) (2023-11-13) #### Merged Pull Requests -- CHEF-6440: Integrates audit logging feature [#6809](https://github.com/inspec/inspec/pull/6809) ([Vasu1105](https://github.com/Vasu1105)) +- CHEF-8416: Patch for broken reporter integration for compliance phase [#6859](https://github.com/inspec/inspec/pull/6859) ([ahasunos](https://github.com/ahasunos)) ## [v6.4.48](https://github.com/inspec/inspec/tree/v6.4.48) (2023-08-22) @@ -38,6 +38,7 @@ ### Changes since 5.22.13 release #### Merged Pull Requests +- CHEF-8416: Patch for broken reporter integration for compliance phase [#6859](https://github.com/inspec/inspec/pull/6859) ([ahasunos](https://github.com/ahasunos)) - CHEF-6440: Integrates audit logging feature [#6809](https://github.com/inspec/inspec/pull/6809) ([Vasu1105](https://github.com/Vasu1105)) - Bump chef-licensing verison from ">= 0.4.44" to ">=0.7.5" [#6856](https://github.com/inspec/inspec/pull/6856) ([Vasu1105](https://github.com/Vasu1105)) - CHEF-6439 Mandatory Profile Signing (Preview) [#6705](https://github.com/inspec/inspec/pull/6705) ([Nik08](https://github.com/Nik08)) diff --git a/VERSION b/VERSION index cd802a1ec..ba92e72f5 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -6.6.0 \ No newline at end of file +6.6.1 \ 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 49138168c..99adb6c33 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.6.0".freeze + VERSION = "6.6.1".freeze end diff --git a/lib/inspec/version.rb b/lib/inspec/version.rb index 260e8530a..fba7c0ec0 100644 --- a/lib/inspec/version.rb +++ b/lib/inspec/version.rb @@ -1,3 +1,3 @@ module Inspec - VERSION = "6.6.0".freeze + VERSION = "6.6.1".freeze end