diff options
author | Chef Expeditor <chef-ci@chef.io> | 2019-08-08 19:43:15 +0000 |
---|---|---|
committer | Chef Expeditor <chef-ci@chef.io> | 2019-08-08 19:43:15 +0000 |
commit | 83cd7eb0978c984b881163aeb1aae0e799777e6d (patch) | |
tree | 4389c37acd4cf99975a1e1945423e5913b932c95 | |
parent | 99e693fbff5d249921953d178ac2b85aae975d9b (diff) | |
download | chef-83cd7eb0978c984b881163aeb1aae0e799777e6d.tar.gz |
Bump version to 15.2.20 by Chef Expeditorv15.2.20
Obvious fix; these changes are the result of automation not creative thinking.
-rw-r--r-- | CHANGELOG.md | 7 | ||||
-rw-r--r-- | Gemfile.lock | 14 | ||||
-rw-r--r-- | VERSION | 2 | ||||
-rw-r--r-- | chef-bin/lib/chef-bin/version.rb | 2 | ||||
-rw-r--r-- | chef-config/lib/chef-config/version.rb | 2 | ||||
-rw-r--r-- | lib/chef/version.rb | 2 |
6 files changed, 15 insertions, 14 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index 10da014f35..1c7f716df1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,15 +1,16 @@ <!-- usage documentation: http://expeditor-docs.es.chef.io/configuration/changelog/ --> -<!-- latest_release 15.2.19 --> -## [v15.2.19](https://github.com/chef/chef/tree/v15.2.19) (2019-08-08) +<!-- latest_release 15.2.20 --> +## [v15.2.20](https://github.com/chef/chef/tree/v15.2.20) (2019-08-08) #### Merged Pull Requests -- Consistently use NOT_PASSED over alternatives [#8800](https://github.com/chef/chef/pull/8800) ([lamont-granquist](https://github.com/lamont-granquist)) +- Bump ohai to 15.2.5 [#8803](https://github.com/chef/chef/pull/8803) ([chef-ci](https://github.com/chef-ci)) <!-- latest_release --> <!-- release_rollup since=15.1.36 --> ### Changes not yet released to stable #### Merged Pull Requests +- Bump ohai to 15.2.5 [#8803](https://github.com/chef/chef/pull/8803) ([chef-ci](https://github.com/chef-ci)) <!-- 15.2.20 --> - Consistently use NOT_PASSED over alternatives [#8800](https://github.com/chef/chef/pull/8800) ([lamont-granquist](https://github.com/lamont-granquist)) <!-- 15.2.19 --> - Property: Reorder comparison with NOT_PASSED. [#8781](https://github.com/chef/chef/pull/8781) ([ab](https://github.com/ab)) <!-- 15.2.18 --> - Chef-15: Make temp dir using mkdir instead of mktemp [#8795](https://github.com/chef/chef/pull/8795) ([vsingh-msys](https://github.com/vsingh-msys)) <!-- 15.2.17 --> diff --git a/Gemfile.lock b/Gemfile.lock index ac683bee62..1965904f03 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -27,11 +27,11 @@ GIT PATH remote: . specs: - chef (15.2.19) + chef (15.2.20) addressable bcrypt_pbkdf (~> 1.0) bundler (>= 1.10) - chef-config (= 15.2.19) + chef-config (= 15.2.20) chef-zero (>= 14.0.11) diff-lcs (~> 1.2, >= 1.2.4) ed25519 (~> 1.2) @@ -57,11 +57,11 @@ PATH train-core (~> 2.0, >= 2.0.12) tty-screen (~> 0.6) uuidtools (~> 2.1.5) - chef (15.2.19-universal-mingw32) + chef (15.2.20-universal-mingw32) addressable bcrypt_pbkdf (~> 1.0) bundler (>= 1.10) - chef-config (= 15.2.19) + chef-config (= 15.2.20) chef-zero (>= 14.0.11) diff-lcs (~> 1.2, >= 1.2.4) ed25519 (~> 1.2) @@ -103,13 +103,13 @@ PATH PATH remote: chef-bin specs: - chef-bin (15.2.19) - chef (= 15.2.19) + chef-bin (15.2.20) + chef (= 15.2.20) PATH remote: chef-config specs: - chef-config (15.2.19) + chef-config (15.2.20) addressable fuzzyurl mixlib-config (>= 2.2.12, < 4.0) @@ -1 +1 @@ -15.2.19
\ No newline at end of file +15.2.20
\ No newline at end of file diff --git a/chef-bin/lib/chef-bin/version.rb b/chef-bin/lib/chef-bin/version.rb index a88cd4e248..b0efb144a6 100644 --- a/chef-bin/lib/chef-bin/version.rb +++ b/chef-bin/lib/chef-bin/version.rb @@ -21,7 +21,7 @@ module ChefBin CHEFBIN_ROOT = File.expand_path("../..", __FILE__) - VERSION = "15.2.19".freeze + VERSION = "15.2.20".freeze end # diff --git a/chef-config/lib/chef-config/version.rb b/chef-config/lib/chef-config/version.rb index 7bf243f6ee..b0f399e5b5 100644 --- a/chef-config/lib/chef-config/version.rb +++ b/chef-config/lib/chef-config/version.rb @@ -21,7 +21,7 @@ module ChefConfig CHEFCONFIG_ROOT = File.expand_path("../..", __FILE__) - VERSION = "15.2.19".freeze + VERSION = "15.2.20".freeze end # diff --git a/lib/chef/version.rb b/lib/chef/version.rb index fae4a17914..9392fcebf5 100644 --- a/lib/chef/version.rb +++ b/lib/chef/version.rb @@ -23,7 +23,7 @@ require_relative "version_string" class Chef CHEF_ROOT = File.expand_path("../..", __FILE__) - VERSION = Chef::VersionString.new("15.2.19") + VERSION = Chef::VersionString.new("15.2.20") end # |