diff --git a/CHANGELOG.md b/CHANGELOG.md index 86a22f8cf..a411725e1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,15 +1,11 @@ # Change Log - -## [v6.6.9](https://github.com/inspec/inspec/tree/v6.6.9) (2024-01-24) + +## [v6.6.10](https://github.com/inspec/inspec/tree/v6.6.10) (2024-01-24) #### Merged Pull Requests -- CHEF-4191 Waivers backward compatibility support with Chef Client [#6919](https://github.com/inspec/inspec/pull/6919) ([Nik08](https://github.com/Nik08)) -- CHEF-3166 Unit tests added for IAF file [#6933](https://github.com/inspec/inspec/pull/6933) ([Nik08](https://github.com/Nik08)) -- Reorganize reusable text files [#6918](https://github.com/inspec/inspec/pull/6918) ([IanMadd](https://github.com/IanMadd)) -- Fix failing ssh_key test on Windows [#6948](https://github.com/inspec/inspec/pull/6948) ([Vasu1105](https://github.com/Vasu1105)) -- Turns off dependabot for inspec-4 branch [#6944](https://github.com/inspec/inspec/pull/6944) ([Vasu1105](https://github.com/Vasu1105)) +- CHEF-4442 Streaming reporter fix to capture progress correctly [#6912](https://github.com/inspec/inspec/pull/6912) ([Nik08](https://github.com/Nik08)) ## [v6.4.48](https://github.com/inspec/inspec/tree/v6.4.48) (2023-08-22) @@ -42,6 +38,7 @@ ### Changes since 6.6.0 release #### Merged Pull Requests +- CHEF-4442 Streaming reporter fix to capture progress correctly [#6912](https://github.com/inspec/inspec/pull/6912) ([Nik08](https://github.com/Nik08)) - CHEF-4191 Waivers backward compatibility support with Chef Client [#6919](https://github.com/inspec/inspec/pull/6919) ([Nik08](https://github.com/Nik08)) - CHEF-3166 Unit tests added for IAF file [#6933](https://github.com/inspec/inspec/pull/6933) ([Nik08](https://github.com/Nik08)) - Reorganize reusable text files [#6918](https://github.com/inspec/inspec/pull/6918) ([IanMadd](https://github.com/IanMadd)) diff --git a/VERSION b/VERSION index 21dfb190d..3bd4cfa56 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -6.6.9 \ No newline at end of file +6.6.10 \ 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 e2391e106..09aa883f7 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.9".freeze + VERSION = "6.6.10".freeze end diff --git a/lib/inspec/version.rb b/lib/inspec/version.rb index 2a44deb1c..2f7c0971f 100644 --- a/lib/inspec/version.rb +++ b/lib/inspec/version.rb @@ -1,3 +1,3 @@ module Inspec - VERSION = "6.6.9".freeze + VERSION = "6.6.10".freeze end