diff options
author | Chef Expeditor <chef-ci@chef.io> | 2019-08-29 19:55:13 +0000 |
---|---|---|
committer | Chef Expeditor <chef-ci@chef.io> | 2019-08-29 19:55:13 +0000 |
commit | 9f3737dd5366f260244b3413197406552dbc1a3b (patch) | |
tree | a744693ed6741e4d446d3fe8b1842e6c029bb7cc | |
parent | 94a5f9b5aae78a3b7932e041dee101a03c7e9626 (diff) | |
download | chef-9f3737dd5366f260244b3413197406552dbc1a3b.tar.gz |
Bump version to 15.2.34 by Chef Expeditorv15.2.34
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 9b06039592..ee1cbb17fc 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.33 --> -## [v15.2.33](https://github.com/chef/chef/tree/v15.2.33) (2019-08-29) +<!-- latest_release 15.2.34 --> +## [v15.2.34](https://github.com/chef/chef/tree/v15.2.34) (2019-08-29) #### Merged Pull Requests -- Update InSpec to 4.12 and Train to 3.0 [#8854](https://github.com/chef/chef/pull/8854) ([tas50](https://github.com/tas50)) +- Bootstrap: Only use sudo when changing ownership if --sudo is passed [#8815](https://github.com/chef/chef/pull/8815) ([vsingh-msys](https://github.com/vsingh-msys)) <!-- latest_release --> <!-- release_rollup since=15.2.20 --> ### Changes not yet released to stable #### Merged Pull Requests +- Bootstrap: Only use sudo when changing ownership if --sudo is passed [#8815](https://github.com/chef/chef/pull/8815) ([vsingh-msys](https://github.com/vsingh-msys)) <!-- 15.2.34 --> - Update InSpec to 4.12 and Train to 3.0 [#8854](https://github.com/chef/chef/pull/8854) ([tas50](https://github.com/tas50)) <!-- 15.2.33 --> - remove app_server_support spec file [#8852](https://github.com/chef/chef/pull/8852) ([lamont-granquist](https://github.com/lamont-granquist)) <!-- 15.2.32 --> - Fix node[:cookbooks] attribute [#8846](https://github.com/chef/chef/pull/8846) ([lamont-granquist](https://github.com/lamont-granquist)) <!-- 15.2.31 --> diff --git a/Gemfile.lock b/Gemfile.lock index 197cbdb6a3..5c001d349a 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -27,11 +27,11 @@ GIT PATH remote: . specs: - chef (15.2.33) + chef (15.2.34) addressable bcrypt_pbkdf (~> 1.0) bundler (>= 1.10) - chef-config (= 15.2.33) + chef-config (= 15.2.34) chef-zero (>= 14.0.11) diff-lcs (~> 1.2, >= 1.2.4) ed25519 (~> 1.2) @@ -58,11 +58,11 @@ PATH train-winrm tty-screen (~> 0.6) uuidtools (~> 2.1.5) - chef (15.2.33-universal-mingw32) + chef (15.2.34-universal-mingw32) addressable bcrypt_pbkdf (~> 1.0) bundler (>= 1.10) - chef-config (= 15.2.33) + chef-config (= 15.2.34) chef-zero (>= 14.0.11) diff-lcs (~> 1.2, >= 1.2.4) ed25519 (~> 1.2) @@ -105,13 +105,13 @@ PATH PATH remote: chef-bin specs: - chef-bin (15.2.33) - chef (= 15.2.33) + chef-bin (15.2.34) + chef (= 15.2.34) PATH remote: chef-config specs: - chef-config (15.2.33) + chef-config (15.2.34) addressable fuzzyurl mixlib-config (>= 2.2.12, < 4.0) @@ -1 +1 @@ -15.2.33
\ No newline at end of file +15.2.34
\ 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 d27bbc5507..32e39b4219 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.33".freeze + VERSION = "15.2.34".freeze end # diff --git a/chef-config/lib/chef-config/version.rb b/chef-config/lib/chef-config/version.rb index ef7014daf3..510eccb709 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.33".freeze + VERSION = "15.2.34".freeze end # diff --git a/lib/chef/version.rb b/lib/chef/version.rb index 238143495b..b3a015cb27 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.33") + VERSION = Chef::VersionString.new("15.2.34") end # |