diff --git a/CHANGELOG.md b/CHANGELOG.md index 5f2b6f8a3..4bf601631 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,10 +1,11 @@ # Change Log - -## Unreleased + +## [v6.6.7](https://github.com/inspec/inspec/tree/v6.6.7) (2024-01-04) #### Merged Pull Requests +- CHEF-8990 Remove dependency on active-support function `blank?` [#6914](https://github.com/inspec/inspec/pull/6914) ([Nik08](https://github.com/Nik08)) - CHEF-7276: Update package download URL to use https [#6922](https://github.com/inspec/inspec/pull/6922) ([Vasu1105](https://github.com/Vasu1105)) - Set GitHub labeler action version [#6911](https://github.com/inspec/inspec/pull/6911) ([IanMadd](https://github.com/IanMadd)) @@ -39,6 +40,7 @@ ### Changes since 6.6.0 release #### Merged Pull Requests +- CHEF-8990 Remove dependency on active-support function `blank?` [#6914](https://github.com/inspec/inspec/pull/6914) ([Nik08](https://github.com/Nik08)) - CHEF-7276: Update package download URL to use https [#6922](https://github.com/inspec/inspec/pull/6922) ([Vasu1105](https://github.com/Vasu1105)) - Set GitHub labeler action version [#6911](https://github.com/inspec/inspec/pull/6911) ([IanMadd](https://github.com/IanMadd)) - Fix CI test for windows [#6913](https://github.com/inspec/inspec/pull/6913) ([Nik08](https://github.com/Nik08)) diff --git a/VERSION b/VERSION index b0c4289cb..3e08aca18 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -6.6.6 \ No newline at end of file +6.6.7 \ 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 efeca100e..2bd917773 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.6".freeze + VERSION = "6.6.7".freeze end diff --git a/lib/inspec/version.rb b/lib/inspec/version.rb index ccfdf4982..7996580c3 100644 --- a/lib/inspec/version.rb +++ b/lib/inspec/version.rb @@ -1,3 +1,3 @@ module Inspec - VERSION = "6.6.6".freeze + VERSION = "6.6.7".freeze end