diff --git a/CHANGELOG.md b/CHANGELOG.md index 985e1a921..c58f78605 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,16 +1,17 @@ # Change Log - -## [v5.21.30](https://github.com/inspec/inspec/tree/v5.21.30) (2023-02-03) + +## [v5.21.31](https://github.com/inspec/inspec/tree/v5.21.31) (2023-02-03) #### Merged Pull Requests -- CFINSPEC-554: Update CLI Docs rake task to work with current InSpec docs. [#6384](https://github.com/inspec/inspec/pull/6384) ([ahasunos](https://github.com/ahasunos)) +- CFINSPEC-573: Fix for mongodb_session resource prints debug level of information in profile run result. [#6401](https://github.com/inspec/inspec/pull/6401) ([Vasu1105](https://github.com/Vasu1105)) ### Changes since 5.21.29 release #### Merged Pull Requests +- CFINSPEC-573: Fix for mongodb_session resource prints debug level of information in profile run result. [#6401](https://github.com/inspec/inspec/pull/6401) ([Vasu1105](https://github.com/Vasu1105)) - CFINSPEC-554: Update CLI Docs rake task to work with current InSpec docs. [#6384](https://github.com/inspec/inspec/pull/6384) ([ahasunos](https://github.com/ahasunos)) diff --git a/VERSION b/VERSION index cd92f1653..7debe2e0a 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -5.21.30 \ No newline at end of file +5.21.31 \ 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 cf3bb0943..d3434e648 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 = "5.21.30".freeze + VERSION = "5.21.31".freeze end diff --git a/lib/inspec/version.rb b/lib/inspec/version.rb index e0ec64fe8..d6d752e9e 100644 --- a/lib/inspec/version.rb +++ b/lib/inspec/version.rb @@ -1,3 +1,3 @@ module Inspec - VERSION = "5.21.30".freeze + VERSION = "5.21.31".freeze end