diff --git a/CHANGELOG.md b/CHANGELOG.md index 90263b09e..0e59671e8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,10 +1,10 @@ # Change Log - -## [v4.36.11](https://github.com/inspec/inspec/tree/v4.36.11) (2021-05-05) + +## [v4.37.0](https://github.com/inspec/inspec/tree/v4.37.0) (2021-05-05) #### Merged Pull Requests -- Remove coverage testing [#5500](https://github.com/inspec/inspec/pull/5500) ([clintoncwolfe](https://github.com/clintoncwolfe)) +- Added alias command `automate` for `inspec compliance` [#5490](https://github.com/inspec/inspec/pull/5490) ([Nik08](https://github.com/Nik08)) @@ -17,6 +17,7 @@ - Reinstate resource testing on supported platforms using Test-Kitchen [#5204](https://github.com/inspec/inspec/pull/5204) ([clintoncwolfe](https://github.com/clintoncwolfe)) #### Merged Pull Requests +- Added alias command `automate` for `inspec compliance` [#5490](https://github.com/inspec/inspec/pull/5490) ([Nik08](https://github.com/Nik08)) - Remove coverage testing [#5500](https://github.com/inspec/inspec/pull/5500) ([clintoncwolfe](https://github.com/clintoncwolfe)) - Fix undefined method `+' for nil:NilClass\n\nProfile: - when using profile dependencies and require_controls [#5487](https://github.com/inspec/inspec/pull/5487) ([Vasu1105](https://github.com/Vasu1105)) - Fix bad link [#5498](https://github.com/inspec/inspec/pull/5498) ([IanMadd](https://github.com/IanMadd)) diff --git a/VERSION b/VERSION index 91c217f79..6164ba4cc 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -4.36.11 \ No newline at end of file +4.37.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 fa13b8de9..1acd98163 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.36.11".freeze + VERSION = "4.37.0".freeze end diff --git a/lib/inspec/version.rb b/lib/inspec/version.rb index 61d72dee3..29fe54fd1 100644 --- a/lib/inspec/version.rb +++ b/lib/inspec/version.rb @@ -1,3 +1,3 @@ module Inspec - VERSION = "4.36.11".freeze + VERSION = "4.37.0".freeze end