diff --git a/CHANGELOG.md b/CHANGELOG.md index bb03a7c53..9a9f121e8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,16 +1,17 @@ # Change Log - -## [v6.4.4](https://github.com/inspec/inspec-prime/tree/v6.4.4) (2023-05-09) + +## [v6.4.5](https://github.com/inspec/inspec-prime/tree/v6.4.5) (2023-05-10) #### Merged Pull Requests -- CHEF-1957: Update chef-licesing api call `license_keys` to `fetch_and_persist` [#30](https://github.com/inspec/inspec-prime/pull/30) ([ahasunos](https://github.com/ahasunos)) +- CHEF-2994: Add license command to list of allowed commands [#35](https://github.com/inspec/inspec-prime/pull/35) ([ahasunos](https://github.com/ahasunos)) ### Changes since 5.18.14 release #### Merged Pull Requests +- CHEF-2994: Add license command to list of allowed commands [#35](https://github.com/inspec/inspec-prime/pull/35) ([ahasunos](https://github.com/ahasunos)) - CHEF-1957: Update chef-licesing api call `license_keys` to `fetch_and_persist` [#30](https://github.com/inspec/inspec-prime/pull/30) ([ahasunos](https://github.com/ahasunos)) - Remove kitchen group from Gemfile [#31](https://github.com/inspec/inspec-prime/pull/31) ([ahasunos](https://github.com/ahasunos)) - CHEF-52: Add licensing information to help output [#27](https://github.com/inspec/inspec-prime/pull/27) ([ahasunos](https://github.com/ahasunos)) diff --git a/VERSION b/VERSION index 8b38d69c5..f30dde0cf 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -6.4.4 \ No newline at end of file +6.4.5 \ 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 0755b85dd..4f2db20f7 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.4".freeze + VERSION = "6.4.5".freeze end diff --git a/lib/inspec/version.rb b/lib/inspec/version.rb index 752d1a4ce..e746440f7 100644 --- a/lib/inspec/version.rb +++ b/lib/inspec/version.rb @@ -1,3 +1,3 @@ module Inspec - VERSION = "6.4.4".freeze + VERSION = "6.4.5".freeze end