diff --git a/CHANGELOG.md b/CHANGELOG.md index 7451f5aaf..89df8b8c3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,16 +1,17 @@ # Change Log - -## [v4.19.4](https://github.com/inspec/inspec/tree/v4.19.4) (2020-06-05) + +## [v4.20.0](https://github.com/inspec/inspec/tree/v4.20.0) (2020-06-05) #### Merged Pull Requests -- Fix unmatched backticks in docs [#5053](https://github.com/inspec/inspec/pull/5053) ([james-stocks](https://github.com/james-stocks)) +- CLI Option to silence deprecations [#5026](https://github.com/inspec/inspec/pull/5026) ([clintoncwolfe](https://github.com/clintoncwolfe)) ### Changes since 4.19.2 release #### Merged Pull Requests +- CLI Option to silence deprecations [#5026](https://github.com/inspec/inspec/pull/5026) ([clintoncwolfe](https://github.com/clintoncwolfe)) - Fix unmatched backticks in docs [#5053](https://github.com/inspec/inspec/pull/5053) ([james-stocks](https://github.com/james-stocks)) #### New Features diff --git a/VERSION b/VERSION index 45a94dd8f..a7752bacf 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -4.19.4 \ No newline at end of file +4.20.0 \ 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 61d35b8e8..3d6a2e765 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("../..", __FILE__) - VERSION = "4.19.4".freeze + VERSION = "4.20.0".freeze end diff --git a/lib/inspec/version.rb b/lib/inspec/version.rb index 9aeb4d485..cfbfbf45c 100644 --- a/lib/inspec/version.rb +++ b/lib/inspec/version.rb @@ -1,3 +1,3 @@ module Inspec - VERSION = "4.19.4".freeze + VERSION = "4.20.0".freeze end