diff --git a/CHANGELOG.md b/CHANGELOG.md index 13ee0b623..fbce897eb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,16 +1,17 @@ # Change Log - -## [v4.37.1](https://github.com/inspec/inspec/tree/v4.37.1) (2021-05-10) + +## [v4.37.2](https://github.com/inspec/inspec/tree/v4.37.2) (2021-05-10) #### Merged Pull Requests -- Update `bond0` example to use params properly [#5518](https://github.com/inspec/inspec/pull/5518) ([gscho](https://github.com/gscho)) +- HTTP resource response body coerced into UTF-8 [#5510](https://github.com/inspec/inspec/pull/5510) ([Nik08](https://github.com/Nik08)) ### Changes since 4.37.0 release #### Merged Pull Requests +- HTTP resource response body coerced into UTF-8 [#5510](https://github.com/inspec/inspec/pull/5510) ([Nik08](https://github.com/Nik08)) - Update `bond0` example to use params properly [#5518](https://github.com/inspec/inspec/pull/5518) ([gscho](https://github.com/gscho)) diff --git a/VERSION b/VERSION index 02d265370..c4b640e7f 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -4.37.1 \ No newline at end of file +4.37.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 d12343c23..0006a7a45 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.37.1".freeze + VERSION = "4.37.2".freeze end diff --git a/lib/inspec/version.rb b/lib/inspec/version.rb index 8bb404559..1fc2e4684 100644 --- a/lib/inspec/version.rb +++ b/lib/inspec/version.rb @@ -1,3 +1,3 @@ module Inspec - VERSION = "4.37.1".freeze + VERSION = "4.37.2".freeze end