diff --git a/CHANGELOG.md b/CHANGELOG.md index c8cbd4f6e..f9cfc1ce3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,16 +1,17 @@ # Change Log - -## [v4.38.3](https://github.com/inspec/inspec/tree/v4.38.3) (2021-06-23) + +## [v4.38.4](https://github.com/inspec/inspec/tree/v4.38.4) (2021-06-29) #### Merged Pull Requests -- Misc updates to the README [#5526](https://github.com/inspec/inspec/pull/5526) ([clintoncwolfe](https://github.com/clintoncwolfe)) +- Oracle Session Exception Handling [#5567](https://github.com/inspec/inspec/pull/5567) ([Nik08](https://github.com/Nik08)) ### Changes since 4.37.30 release #### Merged Pull Requests +- Oracle Session Exception Handling [#5567](https://github.com/inspec/inspec/pull/5567) ([Nik08](https://github.com/Nik08)) - Misc updates to the README [#5526](https://github.com/inspec/inspec/pull/5526) ([clintoncwolfe](https://github.com/clintoncwolfe)) - Fix relative links [#5556](https://github.com/inspec/inspec/pull/5556) ([IanMadd](https://github.com/IanMadd)) - Fix AWS secret key environment variable name in docs [#5566](https://github.com/inspec/inspec/pull/5566) ([sandratiffin](https://github.com/sandratiffin)) diff --git a/VERSION b/VERSION index 0a91b4d78..098c862af 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -4.38.3 \ No newline at end of file +4.38.4 \ 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 18e14821d..99fbf5345 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.38.3".freeze + VERSION = "4.38.4".freeze end diff --git a/lib/inspec/version.rb b/lib/inspec/version.rb index 76afa2e2e..b7ae9a45c 100644 --- a/lib/inspec/version.rb +++ b/lib/inspec/version.rb @@ -1,3 +1,3 @@ module Inspec - VERSION = "4.38.3".freeze + VERSION = "4.38.4".freeze end