diff options
author | Chef Expeditor <expeditor@chef.io> | 2019-09-30 20:15:50 +0000 |
---|---|---|
committer | Chef Expeditor <expeditor@chef.io> | 2019-09-30 20:15:50 +0000 |
commit | 16725d756896055681b887a89a66d1d0bb0db093 (patch) | |
tree | cb0c353940009cdd76042fc73204e1a8150f120a | |
parent | 9d7a984a04e308ddc0e0809e4a75be8b2e4d05e2 (diff) | |
download | chef-15.4.14.tar.gz |
Bump version to 15.4.14 by Chef Expeditorv15.4.14
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 bd9bd3e04b..58209f1dc4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,15 +1,16 @@ <!-- usage documentation: http://expeditor-docs.es.chef.io/configuration/changelog/ --> -<!-- latest_release 15.4.13 --> -## [v15.4.13](https://github.com/chef/chef/tree/v15.4.13) (2019-09-30) +<!-- latest_release 15.4.14 --> +## [v15.4.14](https://github.com/chef/chef/tree/v15.4.14) (2019-09-30) #### Merged Pull Requests -- Add #to_yaml method for ImmutableMash & ImmutableArray [#8927](https://github.com/chef/chef/pull/8927) ([vsingh-msys](https://github.com/vsingh-msys)) +- Update inspec to 4.17.11 and cleanup buildkite testing a bit [#8930](https://github.com/chef/chef/pull/8930) ([tas50](https://github.com/tas50)) <!-- latest_release --> <!-- release_rollup since=15.3.14 --> ### Changes not yet released to stable #### Merged Pull Requests +- Update inspec to 4.17.11 and cleanup buildkite testing a bit [#8930](https://github.com/chef/chef/pull/8930) ([tas50](https://github.com/tas50)) <!-- 15.4.14 --> - Add #to_yaml method for ImmutableMash & ImmutableArray [#8927](https://github.com/chef/chef/pull/8927) ([vsingh-msys](https://github.com/vsingh-msys)) <!-- 15.4.13 --> - Bump inspec-core to 4.17.7 [#8923](https://github.com/chef/chef/pull/8923) ([chef-expeditor[bot]](https://github.com/chef-expeditor[bot])) <!-- 15.4.12 --> - Enable Windows Buildkite verification on default image Windows… [#8882](https://github.com/chef/chef/pull/8882) ([jaymalasinha](https://github.com/jaymalasinha)) <!-- 15.4.11 --> diff --git a/Gemfile.lock b/Gemfile.lock index 9fb9763da7..774b2bd0e2 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -27,11 +27,11 @@ GIT PATH remote: . specs: - chef (15.4.13) + chef (15.4.14) addressable bcrypt_pbkdf (~> 1.0) bundler (>= 1.10) - chef-config (= 15.4.13) + chef-config (= 15.4.14) chef-zero (>= 14.0.11) diff-lcs (~> 1.2, >= 1.2.4) ed25519 (~> 1.2) @@ -58,11 +58,11 @@ PATH train-winrm (>= 0.2.5) tty-screen (~> 0.6) uuidtools (~> 2.1.5) - chef (15.4.13-universal-mingw32) + chef (15.4.14-universal-mingw32) addressable bcrypt_pbkdf (~> 1.0) bundler (>= 1.10) - chef-config (= 15.4.13) + chef-config (= 15.4.14) 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.4.13) - chef (= 15.4.13) + chef-bin (15.4.14) + chef (= 15.4.14) PATH remote: chef-config specs: - chef-config (15.4.13) + chef-config (15.4.14) addressable fuzzyurl mixlib-config (>= 2.2.12, < 4.0) @@ -1 +1 @@ -15.4.13
\ No newline at end of file +15.4.14
\ 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 290d9b3c60..bbe2dad163 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.4.13".freeze + VERSION = "15.4.14".freeze end # diff --git a/chef-config/lib/chef-config/version.rb b/chef-config/lib/chef-config/version.rb index 49100318db..56bbf281b7 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.4.13".freeze + VERSION = "15.4.14".freeze end # diff --git a/lib/chef/version.rb b/lib/chef/version.rb index 2862de7735..b3ddc27b0e 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.4.13") + VERSION = Chef::VersionString.new("15.4.14") end # |