diff --git a/CHANGELOG.md b/CHANGELOG.md index 2ec8e733f..b3361a7d3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,16 +1,17 @@ # Change Log - -## [v4.41.4](https://github.com/inspec/inspec/tree/v4.41.4) (2021-08-18) + +## [v4.41.5](https://github.com/inspec/inspec/tree/v4.41.5) (2021-08-18) #### Merged Pull Requests -- Fix range based filtering in filter tables [#5598](https://github.com/inspec/inspec/pull/5598) ([Nik08](https://github.com/Nik08)) +- Fix apache_conf issue when Server Root is not present in configuration [#5601](https://github.com/inspec/inspec/pull/5601) ([Nik08](https://github.com/Nik08)) ### Changes since 4.41.2 release #### Merged Pull Requests +- Fix apache_conf issue when Server Root is not present in configuration [#5601](https://github.com/inspec/inspec/pull/5601) ([Nik08](https://github.com/Nik08)) - Fix range based filtering in filter tables [#5598](https://github.com/inspec/inspec/pull/5598) ([Nik08](https://github.com/Nik08)) - Build fix for ruby version 2.5 - HTML Proofer gem installation error [#5610](https://github.com/inspec/inspec/pull/5610) ([Nik08](https://github.com/Nik08)) diff --git a/VERSION b/VERSION index 4f174738d..886f76f37 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -4.41.4 \ No newline at end of file +4.41.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 6fa4cb4ef..5e886b72a 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 = "4.41.4".freeze + VERSION = "4.41.5".freeze end diff --git a/lib/inspec/version.rb b/lib/inspec/version.rb index e2a457cbd..a4a5b6868 100644 --- a/lib/inspec/version.rb +++ b/lib/inspec/version.rb @@ -1,3 +1,3 @@ module Inspec - VERSION = "4.41.4".freeze + VERSION = "4.41.5".freeze end