diff --git a/CHANGELOG.md b/CHANGELOG.md index 26a3e130c..489ebdd2b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,9 +1,10 @@ # Change Log - -## Unreleased + +## [v4.22.1](https://github.com/inspec/inspec/tree/v4.22.1) (2020-07-20) #### Merged Pull Requests +- Habitat should not expand $PATH at buildtime [#5148](https://github.com/inspec/inspec/pull/5148) ([james-stocks](https://github.com/james-stocks)) - Temporary comment out to get expeditor build to complete [#5150](https://github.com/inspec/inspec/pull/5150) ([Schwad](https://github.com/Schwad)) @@ -11,6 +12,7 @@ ### Changes since 4.22.0 release #### Merged Pull Requests +- Habitat should not expand $PATH at buildtime [#5148](https://github.com/inspec/inspec/pull/5148) ([james-stocks](https://github.com/james-stocks)) - Temporary comment out to get expeditor build to complete [#5150](https://github.com/inspec/inspec/pull/5150) ([Schwad](https://github.com/Schwad)) diff --git a/VERSION b/VERSION index e52228a2e..e4952ecfe 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -4.22.0 \ No newline at end of file +4.22.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 db52edd8c..2d16138de 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("../..", __FILE__) - VERSION = "4.22.0".freeze + VERSION = "4.22.1".freeze end diff --git a/lib/inspec/version.rb b/lib/inspec/version.rb index 1e4bc5787..94a8c919d 100644 --- a/lib/inspec/version.rb +++ b/lib/inspec/version.rb @@ -1,3 +1,3 @@ module Inspec - VERSION = "4.22.0".freeze + VERSION = "4.22.1".freeze end