diff --git a/CHANGELOG.md b/CHANGELOG.md index 2abe00585..86433ff14 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,16 +1,17 @@ # Change Log - -## [v4.18.33](https://github.com/inspec/inspec/tree/v4.18.33) (2019-11-12) + +## [v4.18.34](https://github.com/inspec/inspec/tree/v4.18.34) (2019-11-12) -#### Merged Pull Requests -- Deprecate inspec/object/* classes [#4680](https://github.com/inspec/inspec/pull/4680) ([btm](https://github.com/btm)) +#### Bug Fixes +- Fix for invocation when calling npm under sudo [#4548](https://github.com/inspec/inspec/pull/4548) ([clintoncwolfe](https://github.com/clintoncwolfe)) ### Changes since 4.18.24 release #### Bug Fixes +- Fix for invocation when calling npm under sudo [#4548](https://github.com/inspec/inspec/pull/4548) ([clintoncwolfe](https://github.com/clintoncwolfe)) - Make input() work in describe.one [#4666](https://github.com/inspec/inspec/pull/4666) ([clintoncwolfe](https://github.com/clintoncwolfe)) #### New Features diff --git a/VERSION b/VERSION index 57619469d..d04d67870 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -4.18.33 \ No newline at end of file +4.18.34 \ 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 6857f4a6b..02d32e27e 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.18.33".freeze + VERSION = "4.18.34".freeze end diff --git a/lib/inspec/version.rb b/lib/inspec/version.rb index 0a52dfe03..854ae13a3 100644 --- a/lib/inspec/version.rb +++ b/lib/inspec/version.rb @@ -1,3 +1,3 @@ module Inspec - VERSION = "4.18.33".freeze + VERSION = "4.18.34".freeze end