diff --git a/CHANGELOG.md b/CHANGELOG.md index 7d36d9083..9e028d786 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,10 +1,10 @@ # Change Log - -## [v4.4.37](https://github.com/inspec/inspec/tree/v4.4.37) (2019-05-20) + +## [v4.4.38](https://github.com/inspec/inspec/tree/v4.4.38) (2019-05-20) #### Merged Pull Requests -- Fix missing requires in toml, postgres_conf resources [#4119](https://github.com/inspec/inspec/pull/4119) ([miah](https://github.com/miah)) +- Add support for Gemfile.local [#4105](https://github.com/inspec/inspec/pull/4105) ([zenspider](https://github.com/zenspider)) @@ -19,6 +19,7 @@ - Add inspec-*-bin to the plugin filter list [#4018](https://github.com/inspec/inspec/pull/4018) ([clintoncwolfe](https://github.com/clintoncwolfe)) #### Merged Pull Requests +- Add support for Gemfile.local [#4105](https://github.com/inspec/inspec/pull/4105) ([zenspider](https://github.com/zenspider)) - Fix missing requires in toml, postgres_conf resources [#4119](https://github.com/inspec/inspec/pull/4119) ([miah](https://github.com/miah)) - json was required twice. [#4118](https://github.com/inspec/inspec/pull/4118) ([miah](https://github.com/miah)) - Fixes a test interaction bug between installer and loader. [#4111](https://github.com/inspec/inspec/pull/4111) ([zenspider](https://github.com/zenspider)) diff --git a/VERSION b/VERSION index f4d572b26..cd0ae325c 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -4.4.37 \ No newline at end of file +4.4.38 \ 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 6ff4219b5..5b2ab5086 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.4.37'.freeze + VERSION = '4.4.38'.freeze end diff --git a/lib/inspec/version.rb b/lib/inspec/version.rb index 5b4bb3657..6aa324970 100644 --- a/lib/inspec/version.rb +++ b/lib/inspec/version.rb @@ -1,3 +1,3 @@ module Inspec - VERSION = '4.4.37'.freeze + VERSION = '4.4.38'.freeze end