diff --git a/CHANGELOG.md b/CHANGELOG.md index 34c7c146e..ebfb265ef 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,16 +1,17 @@ # Change Log - -## [v4.6.1](https://github.com/inspec/inspec/tree/v4.6.1) (2019-06-14) + +## [v4.6.2](https://github.com/inspec/inspec/tree/v4.6.2) (2019-06-17) -#### Merged Pull Requests -- Lets discuss this next week when we're all around =) [#4204](https://github.com/inspec/inspec/pull/4204) ([miah](https://github.com/miah)) +#### Bug Fixes +- Fix Expeditor Version Bump Script [#4205](https://github.com/inspec/inspec/pull/4205) ([clintoncwolfe](https://github.com/clintoncwolfe)) ### Changes since 4.3.2 release #### Bug Fixes +- Fix Expeditor Version Bump Script [#4205](https://github.com/inspec/inspec/pull/4205) ([clintoncwolfe](https://github.com/clintoncwolfe)) - Fix two misrendering hyperlinks in resource docs [#4173](https://github.com/inspec/inspec/pull/4173) ([clintoncwolfe](https://github.com/clintoncwolfe)) - inspec check: Send log to STDERR when running with --format json [#4001](https://github.com/inspec/inspec/pull/4001) ([clintoncwolfe](https://github.com/clintoncwolfe)) diff --git a/VERSION b/VERSION index f4fa8fcb9..3208b090c 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -4.6.1 \ No newline at end of file +4.6.2 \ 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 86c33bc57..9f73fdfb9 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.6.1".freeze + VERSION = "4.6.2".freeze end diff --git a/lib/inspec/version.rb b/lib/inspec/version.rb index 7dad673d5..56aefacf7 100644 --- a/lib/inspec/version.rb +++ b/lib/inspec/version.rb @@ -1,3 +1,3 @@ module Inspec - VERSION = "4.6.1".freeze + VERSION = "4.6.2".freeze end