diff options
author | Chef Expeditor <chef-ci@chef.io> | 2019-01-29 21:03:22 +0000 |
---|---|---|
committer | Chef Expeditor <chef-ci@chef.io> | 2019-01-29 21:03:22 +0000 |
commit | c60f64851e16b7bea69a3c42564967fc5ed3f55b (patch) | |
tree | 34b105ab3d527673a3fab3b57a63838631f9601a | |
parent | 08b30493ff25a4edb1d6ebb8a2e4d99a629de4a2 (diff) | |
download | chef-c60f64851e16b7bea69a3c42564967fc5ed3f55b.tar.gz |
Bump version to 14.10.8 by Chef Expeditorv14.10.8
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 ced99010f1..f95a8f59b5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,15 +1,16 @@ <!-- usage documentation: http://expeditor-docs.es.chef.io/configuration/changelog/ --> -<!-- latest_release 14.10.7 --> -## [v14.10.7](https://github.com/chef/chef/tree/v14.10.7) (2019-01-29) +<!-- latest_release 14.10.8 --> +## [v14.10.8](https://github.com/chef/chef/tree/v14.10.8) (2019-01-29) #### Merged Pull Requests -- Officially deprecate cookbook shadowing and audit mode [#8187](https://github.com/chef/chef/pull/8187) ([tas50](https://github.com/tas50)) +- Backport git resource fix in #8179 and update win32-certstore [#8189](https://github.com/chef/chef/pull/8189) ([tas50](https://github.com/tas50)) <!-- latest_release --> <!-- release_rollup since=14.9.13 --> ### Changes since 14.9.13 release #### Merged Pull Requests +- Backport git resource fix in #8179 and update win32-certstore [#8189](https://github.com/chef/chef/pull/8189) ([tas50](https://github.com/tas50)) <!-- 14.10.8 --> - Officially deprecate cookbook shadowing and audit mode [#8187](https://github.com/chef/chef/pull/8187) ([tas50](https://github.com/tas50)) <!-- 14.10.7 --> - Update inspec to 3.3.14 [#8185](https://github.com/chef/chef/pull/8185) ([tas50](https://github.com/tas50)) <!-- 14.10.6 --> - apt_repository: Don't create gpg temporary files owned by root in the running user's home directory [#8184](https://github.com/chef/chef/pull/8184) ([tas50](https://github.com/tas50)) <!-- 14.10.5 --> diff --git a/Gemfile.lock b/Gemfile.lock index 3fc7cb3b80..026ac2b86a 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,10 +1,10 @@ PATH remote: . specs: - chef (14.10.7) + chef (14.10.8) addressable bundler (>= 1.10) - chef-config (= 14.10.7) + chef-config (= 14.10.8) chef-zero (>= 13.0) diff-lcs (~> 1.2, >= 1.2.4) erubis (~> 2.7) @@ -31,10 +31,10 @@ PATH specinfra (~> 2.10) syslog-logger (~> 1.6) uuidtools (~> 2.1.5) - chef (14.10.7-universal-mingw32) + chef (14.10.8-universal-mingw32) addressable bundler (>= 1.10) - chef-config (= 14.10.7) + chef-config (= 14.10.8) chef-zero (>= 13.0) diff-lcs (~> 1.2, >= 1.2.4) erubis (~> 2.7) @@ -78,7 +78,7 @@ PATH PATH remote: chef-config specs: - chef-config (14.10.7) + chef-config (14.10.8) addressable fuzzyurl mixlib-config (>= 2.2.12, < 3.0) @@ -1 +1 @@ -14.10.7
\ No newline at end of file +14.10.8
\ 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 1b58c790bc..f0b817687a 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.10.7".freeze + VERSION = "14.10.8".freeze end # diff --git a/lib/chef/version.rb b/lib/chef/version.rb index 674e6c0a84..e54087a114 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.10.7") + VERSION = Chef::VersionString.new("14.10.8") end # |