diff options
author | Chef Expeditor <chef-ci@chef.io> | 2018-09-27 18:24:39 +0000 |
---|---|---|
committer | Chef Expeditor <chef-ci@chef.io> | 2018-09-27 18:24:39 +0000 |
commit | d90a4d1cfcba17b03136b6e31b620c6eafa29e3b (patch) | |
tree | 375f37a0df9131034d2dfeffe82459f9c7747b72 | |
parent | ace85a44a4839fd0907d983a29b59f4eb7bf9485 (diff) | |
download | chef-d90a4d1cfcba17b03136b6e31b620c6eafa29e3b.tar.gz |
Bump version to 14.6.5 by Chef Expeditorv14.6.5
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 97e9a48ccb..a125a38cf9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,15 +1,16 @@ <!-- usage documentation: http://expeditor-docs.es.chef.io/configuration/changelog/ --> -<!-- latest_release 14.6.4 --> -## [v14.6.4](https://github.com/chef/chef/tree/v14.6.4) (2018-09-26) +<!-- latest_release 14.6.5 --> +## [v14.6.5](https://github.com/chef/chef/tree/v14.6.5) (2018-09-27) #### Merged Pull Requests -- Fixed introduced version to 14.6 for newly added properties in zypper_package and windows_user resource as it got released in 14.6. [#7692](https://github.com/chef/chef/pull/7692) ([Vasu1105](https://github.com/Vasu1105)) +- Minor optimization in yum_helper.py to avoid RPM DB corruption under certain scenarios [#7696](https://github.com/chef/chef/pull/7696) ([Nimesh-Msys](https://github.com/Nimesh-Msys)) <!-- latest_release --> <!-- release_rollup since=14.5.33 --> ### Changes since 14.5.33 release #### Merged Pull Requests +- Minor optimization in yum_helper.py to avoid RPM DB corruption under certain scenarios [#7696](https://github.com/chef/chef/pull/7696) ([Nimesh-Msys](https://github.com/Nimesh-Msys)) <!-- 14.6.5 --> - Fixed introduced version to 14.6 for newly added properties in zypper_package and windows_user resource as it got released in 14.6. [#7692](https://github.com/chef/chef/pull/7692) ([Vasu1105](https://github.com/Vasu1105)) <!-- 14.6.4 --> - Upgrade to rspec 3.8.x [#7691](https://github.com/chef/chef/pull/7691) ([lamont-granquist](https://github.com/lamont-granquist)) <!-- 14.6.3 --> - Adds full_name property to user resource for Windows. [#7677](https://github.com/chef/chef/pull/7677) ([Vasu1105](https://github.com/Vasu1105)) <!-- 14.6.2 --> diff --git a/Gemfile.lock b/Gemfile.lock index ba5d85fec7..4cf0790ceb 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -9,10 +9,10 @@ GIT PATH remote: . specs: - chef (14.6.4) + chef (14.6.5) addressable bundler (>= 1.10) - chef-config (= 14.6.4) + chef-config (= 14.6.5) chef-zero (>= 13.0) diff-lcs (~> 1.2, >= 1.2.4) erubis (~> 2.7) @@ -40,10 +40,10 @@ PATH specinfra (~> 2.10) syslog-logger (~> 1.6) uuidtools (~> 2.1.5) - chef (14.6.4-universal-mingw32) + chef (14.6.5-universal-mingw32) addressable bundler (>= 1.10) - chef-config (= 14.6.4) + chef-config (= 14.6.5) 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.6.4) + chef-config (14.6.5) addressable fuzzyurl mixlib-config (>= 2.2.12, < 3.0) @@ -1 +1 @@ -14.6.4
\ No newline at end of file +14.6.5
\ 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 2843b1a9ed..1d1f8dfd0b 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.6.4".freeze + VERSION = "14.6.5".freeze end # diff --git a/lib/chef/version.rb b/lib/chef/version.rb index c432e4a014..6ddc41eb3b 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.6.4") + VERSION = Chef::VersionString.new("14.6.5") end # |