diff --git a/CHANGELOG.md b/CHANGELOG.md index ccedc5a40..5ca02c64a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,10 +1,11 @@ # Change Log - -## Unreleased + +## [v6.4.73](https://github.com/inspec/inspec/tree/v6.4.73) (2023-10-19) #### Merged Pull Requests +- CHEF-3928 Fix in HTML2 reporter - unique ID usage for control HTML divisions [#6645](https://github.com/inspec/inspec/pull/6645) ([Nik08](https://github.com/Nik08)) - Update links in docs [#6788](https://github.com/inspec/inspec/pull/6788) ([IanMadd](https://github.com/IanMadd)) - CI: Build on MacOS 11 intel, dropping EOL 10.15 [#6789](https://github.com/inspec/inspec/pull/6789) ([clintoncwolfe](https://github.com/clintoncwolfe)) - Bump omnibus-software from `b3d89a4` to `4fef367` in /omnibus [#6805](https://github.com/inspec/inspec/pull/6805) ([dependabot[bot]](https://github.com/dependabot[bot])) @@ -42,6 +43,7 @@ ### Changes since 5.22.13 release #### Merged Pull Requests +- CHEF-3928 Fix in HTML2 reporter - unique ID usage for control HTML divisions [#6645](https://github.com/inspec/inspec/pull/6645) ([Nik08](https://github.com/Nik08)) - Update links in docs [#6788](https://github.com/inspec/inspec/pull/6788) ([IanMadd](https://github.com/IanMadd)) - CI: Build on MacOS 11 intel, dropping EOL 10.15 [#6789](https://github.com/inspec/inspec/pull/6789) ([clintoncwolfe](https://github.com/clintoncwolfe)) - Bump omnibus-software from `b3d89a4` to `4fef367` in /omnibus [#6805](https://github.com/inspec/inspec/pull/6805) ([dependabot[bot]](https://github.com/dependabot[bot])) diff --git a/VERSION b/VERSION index 1ee15454f..598ea5a49 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -6.4.72 \ No newline at end of file +6.4.73 \ 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 f63e78376..3dfa161a1 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.72".freeze + VERSION = "6.4.73".freeze end diff --git a/lib/inspec/version.rb b/lib/inspec/version.rb index 1b6987df0..cefeb2f77 100644 --- a/lib/inspec/version.rb +++ b/lib/inspec/version.rb @@ -1,3 +1,3 @@ module Inspec - VERSION = "6.4.72".freeze + VERSION = "6.4.73".freeze end