diff options
author | Chef Expeditor <chef-ci@chef.io> | 2019-03-18 16:53:31 +0000 |
---|---|---|
committer | Chef Expeditor <chef-ci@chef.io> | 2019-03-18 16:53:31 +0000 |
commit | fa2113ddd6282074aa897767bdc908877759502f (patch) | |
tree | ef77de8a22969eab931ff3f617cce70f4bc3bd66 | |
parent | 7cf3cc364475d4c52bd4672d16a34365873b5dcd (diff) | |
download | chef-fa2113ddd6282074aa897767bdc908877759502f.tar.gz |
Bump version to 15.0.190 by Chef Expeditorv15.0.190
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-config/lib/chef-config/version.rb | 2 | ||||
-rw-r--r-- | lib/chef/version.rb | 2 |
5 files changed, 14 insertions, 13 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index b55e36c5bb..8cf86ffdde 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,15 +1,16 @@ <!-- usage documentation: http://expeditor-docs.es.chef.io/configuration/changelog/ --> -<!-- latest_release 15.0.189 --> -## [v15.0.189](https://github.com/chef/chef/tree/v15.0.189) (2019-03-15) +<!-- latest_release 15.0.190 --> +## [v15.0.190](https://github.com/chef/chef/tree/v15.0.190) (2019-03-18) #### Merged Pull Requests -- Allow the use of `--delete-entire-chef-repo` [#8298](https://github.com/chef/chef/pull/8298) ([ABewsher](https://github.com/ABewsher)) +- Early allocation of the Chef::RunContext [#8301](https://github.com/chef/chef/pull/8301) ([lamont-granquist](https://github.com/lamont-granquist)) <!-- latest_release --> <!-- release_rollup --> ### Changes since latest stable release #### Merged Pull Requests +- Early allocation of the Chef::RunContext [#8301](https://github.com/chef/chef/pull/8301) ([lamont-granquist](https://github.com/lamont-granquist)) <!-- 15.0.190 --> - Allow the use of `--delete-entire-chef-repo` [#8298](https://github.com/chef/chef/pull/8298) ([ABewsher](https://github.com/ABewsher)) <!-- 15.0.189 --> - fix unsolvable Gemfile.lock [#8300](https://github.com/chef/chef/pull/8300) ([lamont-granquist](https://github.com/lamont-granquist)) <!-- 15.0.188 --> - windows_service: Fix action :start to not resets credentials on service [#8278](https://github.com/chef/chef/pull/8278) ([jasonwbarnett](https://github.com/jasonwbarnett)) <!-- 15.0.187 --> diff --git a/Gemfile.lock b/Gemfile.lock index 1e25fcfd0b..23d160ebb2 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -8,10 +8,10 @@ GIT GIT remote: https://github.com/chef/ohai.git - revision: 25857228433d879148ae39f293bbf2368e0b652e + revision: dd8aac97c78d23aa0afb698c1a76e5930ec9978e branch: master specs: - ohai (15.0.28) + ohai (15.0.29) chef-config (>= 12.8, < 16) ffi (~> 1.9) ffi-yajl (~> 2.2) @@ -27,10 +27,10 @@ GIT PATH remote: . specs: - chef (15.0.189) + chef (15.0.190) addressable bundler (>= 1.10) - chef-config (= 15.0.189) + chef-config (= 15.0.190) chef-zero (>= 14.0.11) diff-lcs (~> 1.2, >= 1.2.4) erubis (~> 2.7) @@ -51,10 +51,10 @@ PATH proxifier (~> 1.0) syslog-logger (~> 1.6) uuidtools (~> 2.1.5) - chef (15.0.189-universal-mingw32) + chef (15.0.190-universal-mingw32) addressable bundler (>= 1.10) - chef-config (= 15.0.189) + chef-config (= 15.0.190) chef-zero (>= 14.0.11) diff-lcs (~> 1.2, >= 1.2.4) erubis (~> 2.7) @@ -92,7 +92,7 @@ PATH PATH remote: chef-config specs: - chef-config (15.0.189) + chef-config (15.0.190) addressable fuzzyurl mixlib-config (>= 2.2.12, < 3.0) @@ -1 +1 @@ -15.0.189
\ No newline at end of file +15.0.190
\ No newline at end of file diff --git a/chef-config/lib/chef-config/version.rb b/chef-config/lib/chef-config/version.rb index 01a4e81d36..5f98e85533 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.0.189".freeze + VERSION = "15.0.190".freeze end # diff --git a/lib/chef/version.rb b/lib/chef/version.rb index 4c227a5d06..b917ebf36a 100644 --- a/lib/chef/version.rb +++ b/lib/chef/version.rb @@ -23,7 +23,7 @@ require "chef/version_string" class Chef CHEF_ROOT = File.expand_path("../..", __FILE__) - VERSION = Chef::VersionString.new("15.0.189") + VERSION = Chef::VersionString.new("15.0.190") end # |