diff options
author | Chef Expeditor <chef-ci@chef.io> | 2019-04-24 17:50:24 +0000 |
---|---|---|
committer | Chef Expeditor <chef-ci@chef.io> | 2019-04-24 17:50:24 +0000 |
commit | 66c0fdeb65c19d267bd501550e60cd16d7bb4901 (patch) | |
tree | e3bd1d3254ec3cec393013ef0b761d60a94994c7 | |
parent | f99ecb0fe7d1be9d01ffc575590ec18014ca2f4b (diff) | |
download | chef-66c0fdeb65c19d267bd501550e60cd16d7bb4901.tar.gz |
Bump version to 15.0.233 by Chef Expeditorv15.0.233
Obvious fix; these changes are the result of automation not creative thinking.
-rw-r--r-- | CHANGELOG.md | 7 | ||||
-rw-r--r-- | Gemfile.lock | 10 | ||||
-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, 12 insertions, 11 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index 7f59d44116..e53ac8661c 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.232 --> -## [v15.0.232](https://github.com/chef/chef/tree/v15.0.232) (2019-04-24) +<!-- latest_release 15.0.233 --> +## [v15.0.233](https://github.com/chef/chef/tree/v15.0.233) (2019-04-24) #### Merged Pull Requests -- Move ed25519 gems into omnibus [#8410](https://github.com/chef/chef/pull/8410) ([tas50](https://github.com/tas50)) +- Refactor bootstrapping to use train as the transport with full Windows bootstrap support [#8253](https://github.com/chef/chef/pull/8253) ([marcparadise](https://github.com/marcparadise)) <!-- latest_release --> <!-- release_rollup --> ### Changes since latest stable release #### Merged Pull Requests +- Refactor bootstrapping to use train as the transport with full Windows bootstrap support [#8253](https://github.com/chef/chef/pull/8253) ([marcparadise](https://github.com/marcparadise)) <!-- 15.0.233 --> - Move ed25519 gems into omnibus [#8410](https://github.com/chef/chef/pull/8410) ([tas50](https://github.com/tas50)) <!-- 15.0.232 --> - Implement new owner/review structure + expand dev docs [#8350](https://github.com/chef/chef/pull/8350) ([tas50](https://github.com/tas50)) <!-- 15.0.231 --> - Add Chef::Dist to abstract branding details to a single location [#8368](https://github.com/chef/chef/pull/8368) ([bobchaos](https://github.com/bobchaos)) <!-- 15.0.230 --> diff --git a/Gemfile.lock b/Gemfile.lock index 526d7271c5..a4f7a2845a 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -27,11 +27,11 @@ GIT PATH remote: . specs: - chef (15.0.232) + chef (15.0.233) addressable bcrypt_pbkdf (~> 1.0) bundler (>= 1.10) - chef-config (= 15.0.232) + chef-config (= 15.0.233) chef-core (~> 0.0.3) chef-zero (>= 14.0.11) diff-lcs (~> 1.2, >= 1.2.4) @@ -56,11 +56,11 @@ PATH syslog-logger (~> 1.6) tty-screen (~> 0.6) uuidtools (~> 2.1.5) - chef (15.0.232-universal-mingw32) + chef (15.0.233-universal-mingw32) addressable bcrypt_pbkdf (~> 1.0) bundler (>= 1.10) - chef-config (= 15.0.232) + chef-config (= 15.0.233) chef-core (~> 0.0.3) chef-zero (>= 14.0.11) diff-lcs (~> 1.2, >= 1.2.4) @@ -101,7 +101,7 @@ PATH PATH remote: chef-config specs: - chef-config (15.0.232) + chef-config (15.0.233) addressable fuzzyurl mixlib-config (>= 2.2.12, < 4.0) @@ -1 +1 @@ -15.0.232
\ No newline at end of file +15.0.233
\ 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 f22aed96fc..824de26477 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.232".freeze + VERSION = "15.0.233".freeze end # diff --git a/lib/chef/version.rb b/lib/chef/version.rb index 253905ca4d..23584f4be2 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.232") + VERSION = Chef::VersionString.new("15.0.233") end # |