diff --git a/CHANGELOG.md b/CHANGELOG.md index b6ec02592..9e5265679 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,16 +1,17 @@ # Change Log - -## [v4.22.7](https://github.com/inspec/inspec/tree/v4.22.7) (2020-08-04) + +## [v4.22.8](https://github.com/inspec/inspec/tree/v4.22.8) (2020-08-04) #### Merged Pull Requests -- fix error in passwd example [#5171](https://github.com/inspec/inspec/pull/5171) ([chrisbirster](https://github.com/chrisbirster)) +- Supports Scientific Linux in service resource [#5164](https://github.com/inspec/inspec/pull/5164) ([Schwad](https://github.com/Schwad)) ### Changes since 4.22.1 release #### Merged Pull Requests +- Supports Scientific Linux in service resource [#5164](https://github.com/inspec/inspec/pull/5164) ([Schwad](https://github.com/Schwad)) - fix error in passwd example [#5171](https://github.com/inspec/inspec/pull/5171) ([chrisbirster](https://github.com/chrisbirster)) - Fix missing docs content [#5159](https://github.com/inspec/inspec/pull/5159) ([IanMadd](https://github.com/IanMadd)) - Move windows bomb forward pre-emptively [#5176](https://github.com/inspec/inspec/pull/5176) ([Schwad](https://github.com/Schwad)) diff --git a/VERSION b/VERSION index 61f94d3d3..3f5c8515b 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -4.22.7 \ No newline at end of file +4.22.8 \ 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 83b98f7a1..873cd0b90 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.7".freeze + VERSION = "4.22.8".freeze end diff --git a/lib/inspec/version.rb b/lib/inspec/version.rb index a720ad383..fb5880efd 100644 --- a/lib/inspec/version.rb +++ b/lib/inspec/version.rb @@ -1,3 +1,3 @@ module Inspec - VERSION = "4.22.7".freeze + VERSION = "4.22.8".freeze end