diff options
author | Chef Expeditor <chef-ci@chef.io> | 2018-12-20 07:00:31 +0000 |
---|---|---|
committer | Chef Expeditor <chef-ci@chef.io> | 2018-12-20 07:00:31 +0000 |
commit | 010b8f22477d42fae6d7b8b9fe071784e5705c02 (patch) | |
tree | 9413ae67991e89208c5b578bbf16ae89e67d88cc | |
parent | 5dfb98ddd8f7c0adad4b2624f42d2c2be9049c6b (diff) | |
download | chef-010b8f22477d42fae6d7b8b9fe071784e5705c02.tar.gz |
Bump version to 14.9.2 by Chef Expeditorv14.9.2
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 aacf849835..8ea18cc096 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,15 +1,16 @@ <!-- usage documentation: http://expeditor-docs.es.chef.io/configuration/changelog/ --> -<!-- latest_release 14.9.1 --> -## [v14.9.1](https://github.com/chef/chef/tree/v14.9.1) (2018-12-20) +<!-- latest_release 14.9.2 --> +## [v14.9.2](https://github.com/chef/chef/tree/v14.9.2) (2018-12-20) #### Merged Pull Requests -- chef 14: minimal_ohai: Add init_package plugin as a required plugin [#8072](https://github.com/chef/chef/pull/8072) ([tas50](https://github.com/tas50)) +- Disable s3 omnibus cache [#8069](https://github.com/chef/chef/pull/8069) ([tas50](https://github.com/tas50)) <!-- latest_release --> <!-- release_rollup since=14.8.12 --> ### Changes since 14.8.12 release #### Merged Pull Requests +- Disable s3 omnibus cache [#8069](https://github.com/chef/chef/pull/8069) ([tas50](https://github.com/tas50)) <!-- 14.9.2 --> - chef 14: minimal_ohai: Add init_package plugin as a required plugin [#8072](https://github.com/chef/chef/pull/8072) ([tas50](https://github.com/tas50)) <!-- 14.9.1 --> - chef 14: windows_certificate: Fix invalid byte sequence errors with pfx certicates [#8071](https://github.com/chef/chef/pull/8071) ([tas50](https://github.com/tas50)) <!-- 14.9.0 --> - windows_certificate: Fix failures in delete action fails if certificate doesn't exist [#8073](https://github.com/chef/chef/pull/8073) ([tas50](https://github.com/tas50)) <!-- 14.8.24 --> diff --git a/Gemfile.lock b/Gemfile.lock index c0e558fb7c..7edad4b76b 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -9,10 +9,10 @@ GIT PATH remote: . specs: - chef (14.9.1) + chef (14.9.2) addressable bundler (>= 1.10) - chef-config (= 14.9.1) + chef-config (= 14.9.2) chef-zero (>= 13.0) diff-lcs (~> 1.2, >= 1.2.4) erubis (~> 2.7) @@ -39,10 +39,10 @@ PATH specinfra (~> 2.10) syslog-logger (~> 1.6) uuidtools (~> 2.1.5) - chef (14.9.1-universal-mingw32) + chef (14.9.2-universal-mingw32) addressable bundler (>= 1.10) - chef-config (= 14.9.1) + chef-config (= 14.9.2) chef-zero (>= 13.0) diff-lcs (~> 1.2, >= 1.2.4) erubis (~> 2.7) @@ -86,7 +86,7 @@ PATH PATH remote: chef-config specs: - chef-config (14.9.1) + chef-config (14.9.2) addressable fuzzyurl mixlib-config (>= 2.2.12, < 3.0) @@ -1 +1 @@ -14.9.1
\ No newline at end of file +14.9.2
\ 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 e415abb13e..9c8246917f 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 = "14.9.1".freeze + VERSION = "14.9.2".freeze end # diff --git a/lib/chef/version.rb b/lib/chef/version.rb index 5c46a58893..8328b028f4 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("14.9.1") + VERSION = Chef::VersionString.new("14.9.2") end # |