diff --git a/CHANGELOG.md b/CHANGELOG.md index cea74a0bd..c0a24c36d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,9 +1,17 @@ # Change Log - + +## [v4.6.5](https://github.com/inspec/inspec/tree/v4.6.5) (2019-06-19) + +#### Merged Pull Requests +- Allow to switch off the license check for community distributions [#4156](https://github.com/inspec/inspec/pull/4156) ([artem-sidorenko](https://github.com/artem-sidorenko)) - + +### Changes since 4.6.4 release + +#### Merged Pull Requests +- Allow to switch off the license check for community distributions [#4156](https://github.com/inspec/inspec/pull/4156) ([artem-sidorenko](https://github.com/artem-sidorenko)) diff --git a/VERSION b/VERSION index 101d404f9..d9167bb69 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -4.6.4 \ No newline at end of file +4.6.5 \ 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 dc6c4fc2d..2ecfcf043 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.4".freeze + VERSION = "4.6.5".freeze end diff --git a/lib/inspec/version.rb b/lib/inspec/version.rb index dffc004bd..03f4453e2 100644 --- a/lib/inspec/version.rb +++ b/lib/inspec/version.rb @@ -1,3 +1,3 @@ module Inspec - VERSION = "4.6.4".freeze + VERSION = "4.6.5".freeze end