diff --git a/CHANGELOG.md b/CHANGELOG.md index f8d5f3c61..8be0f4b63 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,17 +1,10 @@ # Change Log - -## [v4.7.0](https://github.com/inspec/inspec/tree/v4.7.0) (2019-07-08) - -#### New Resources -- Add ip6tables resource [#4236](https://github.com/inspec/inspec/pull/4236) ([ramereth](https://github.com/ramereth)) + +## [v4.7.1](https://github.com/inspec/inspec/tree/v4.7.1) (2019-07-08) #### Merged Pull Requests -- skip lint, just run tests [#4266](https://github.com/inspec/inspec/pull/4266) ([miah](https://github.com/miah)) -- Use correct indentation levels in .expeditor/config.yml [#4267](https://github.com/inspec/inspec/pull/4267) ([tduffield](https://github.com/tduffield)) -- Add test coverage to pipeline [#4264](https://github.com/inspec/inspec/pull/4264) ([miah](https://github.com/miah)) -- maintainer_group is deprecated [#4263](https://github.com/inspec/inspec/pull/4263) ([miah](https://github.com/miah)) -- properly declare environment variable [#4262](https://github.com/inspec/inspec/pull/4262) ([miah](https://github.com/miah)) +- Add allowed users example to Users resource [#4269](https://github.com/inspec/inspec/pull/4269) ([shoekstra](https://github.com/shoekstra)) @@ -21,6 +14,7 @@ - Add ip6tables resource [#4236](https://github.com/inspec/inspec/pull/4236) ([ramereth](https://github.com/ramereth)) #### Merged Pull Requests +- Add allowed users example to Users resource [#4269](https://github.com/inspec/inspec/pull/4269) ([shoekstra](https://github.com/shoekstra)) - skip lint, just run tests [#4266](https://github.com/inspec/inspec/pull/4266) ([miah](https://github.com/miah)) - Use correct indentation levels in .expeditor/config.yml [#4267](https://github.com/inspec/inspec/pull/4267) ([tduffield](https://github.com/tduffield)) - Add test coverage to pipeline [#4264](https://github.com/inspec/inspec/pull/4264) ([miah](https://github.com/miah)) diff --git a/VERSION b/VERSION index 1163055e2..cfacfe408 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -4.7.0 \ No newline at end of file +4.7.1 \ 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 a5d21ff4b..e7bfd3b69 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.7.0".freeze + VERSION = "4.7.1".freeze end diff --git a/lib/inspec/version.rb b/lib/inspec/version.rb index f2db1a4b9..8c0c369de 100644 --- a/lib/inspec/version.rb +++ b/lib/inspec/version.rb @@ -1,3 +1,3 @@ module Inspec - VERSION = "4.7.0".freeze + VERSION = "4.7.1".freeze end