diff --git a/CHANGELOG.md b/CHANGELOG.md index 55679490e..d849d7e4a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,16 +1,17 @@ # Change Log - -## [v4.35.1](https://github.com/inspec/inspec/tree/v4.35.1) (2021-04-21) + +## [v4.35.2](https://github.com/inspec/inspec/tree/v4.35.2) (2021-04-27) #### Merged Pull Requests -- Update faraday requirement from >= 0.9.0, < 1.4 to >= 0.9.0, < 1.5 [#5469](https://github.com/inspec/inspec/pull/5469) ([dependabot-preview[bot]](https://github.com/dependabot-preview[bot])) +- Minor fix - Method expected to return boolean but it was returning nil if condition check fails [#5480](https://github.com/inspec/inspec/pull/5480) ([Vasu1105](https://github.com/Vasu1105)) ### Changes since 4.33.1 release #### Merged Pull Requests +- Minor fix - Method expected to return boolean but it was returning nil if condition check fails [#5480](https://github.com/inspec/inspec/pull/5480) ([Vasu1105](https://github.com/Vasu1105)) - Update faraday requirement from >= 0.9.0, < 1.4 to >= 0.9.0, < 1.5 [#5469](https://github.com/inspec/inspec/pull/5469) ([dependabot-preview[bot]](https://github.com/dependabot-preview[bot])) #### New Features diff --git a/VERSION b/VERSION index b890e9364..92ad5f5e1 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -4.35.1 \ No newline at end of file +4.35.2 \ 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 0731eebf6..696df8e00 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.35.1".freeze + VERSION = "4.35.2".freeze end diff --git a/lib/inspec/version.rb b/lib/inspec/version.rb index d10592652..0de59466a 100644 --- a/lib/inspec/version.rb +++ b/lib/inspec/version.rb @@ -1,3 +1,3 @@ module Inspec - VERSION = "4.35.1".freeze + VERSION = "4.35.2".freeze end