summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChef Expeditor <eng-services-ops+chef-ci@chef.io>2017-08-28 23:15:45 +0000
committerChef Expeditor <eng-services-ops+chef-ci@chef.io>2017-08-28 23:15:45 +0000
commit3c42edc942619b634a3f3dc7e44cf4699532f208 (patch)
treea55d5119fe44a68b9a5bed21032037f3ca4f1534
parentd87ab147033825a435fbaa3a631d44eef12480a8 (diff)
downloadchef-3c42edc942619b634a3f3dc7e44cf4699532f208.tar.gz
Bump version to 13.4.5 by Chef Expeditorv13.4.5
-rw-r--r--CHANGELOG.md7
-rw-r--r--Gemfile.lock10
-rw-r--r--VERSION2
-rw-r--r--chef-config/lib/chef-config/version.rb2
-rw-r--r--lib/chef/version.rb2
5 files changed, 12 insertions, 11 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index c3eb847b6a..0c5f9fff87 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,8 +1,8 @@
-<!-- latest_release 13.4.4 -->
-## [v13.4.4](https://github.com/chef/chef/tree/v13.4.4) (2017-08-28)
+<!-- latest_release 13.4.5 -->
+## [v13.4.5](https://github.com/chef/chef/tree/v13.4.5) (2017-08-28)
#### Merged Pull Requests
-- speed up immutabilization [#6355](https://github.com/chef/chef/pull/6355) ([lamont-granquist](https://github.com/lamont-granquist))
+- node attributes: remove useless dup in merge_all [#6356](https://github.com/chef/chef/pull/6356) ([lamont-granquist](https://github.com/lamont-granquist))
<!-- latest_release -->
<!-- release_rollup since=13.3.42 -->
@@ -12,6 +12,7 @@
- Pass json configuration to ShellSession class [#6314](https://github.com/chef/chef/pull/6314) ([btm](https://github.com/btm)) <!-- 13.3.47 -->
#### Merged Pull Requests
+- node attributes: remove useless dup in merge_all [#6356](https://github.com/chef/chef/pull/6356) ([lamont-granquist](https://github.com/lamont-granquist)) <!-- 13.4.5 -->
- speed up immutabilization [#6355](https://github.com/chef/chef/pull/6355) ([lamont-granquist](https://github.com/lamont-granquist)) <!-- 13.4.4 -->
- [MSYS-645] Updated release_notes for windows_path [#6344](https://github.com/chef/chef/pull/6344) ([NimishaS](https://github.com/NimishaS)) <!-- 13.4.3 -->
- dnf_provider: be more specific when we provide `package` [#6351](https://github.com/chef/chef/pull/6351) ([jaymzh](https://github.com/jaymzh)) <!-- 13.4.2 -->
diff --git a/Gemfile.lock b/Gemfile.lock
index 2680e49233..63ebf1e255 100644
--- a/Gemfile.lock
+++ b/Gemfile.lock
@@ -17,10 +17,10 @@ GIT
PATH
remote: .
specs:
- chef (13.4.4)
+ chef (13.4.5)
addressable
bundler (>= 1.10)
- chef-config (= 13.4.4)
+ chef-config (= 13.4.5)
chef-zero (>= 13.0)
diff-lcs (~> 1.2, >= 1.2.4)
erubis (~> 2.7)
@@ -47,10 +47,10 @@ PATH
specinfra (~> 2.10)
syslog-logger (~> 1.6)
uuidtools (~> 2.1.5)
- chef (13.4.4-universal-mingw32)
+ chef (13.4.5-universal-mingw32)
addressable
bundler (>= 1.10)
- chef-config (= 13.4.4)
+ chef-config (= 13.4.5)
chef-zero (>= 13.0)
diff-lcs (~> 1.2, >= 1.2.4)
erubis (~> 2.7)
@@ -92,7 +92,7 @@ PATH
PATH
remote: chef-config
specs:
- chef-config (13.4.4)
+ chef-config (13.4.5)
addressable
fuzzyurl
mixlib-config (~> 2.0)
diff --git a/VERSION b/VERSION
index 24a9ec7aa9..2150631c08 100644
--- a/VERSION
+++ b/VERSION
@@ -1 +1 @@
-13.4.4 \ No newline at end of file
+13.4.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 5af7ac3ce2..4cb92b1350 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 = "13.4.4"
+ VERSION = "13.4.5"
end
#
diff --git a/lib/chef/version.rb b/lib/chef/version.rb
index 32ea0bc105..0045ece06b 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("13.4.4")
+ VERSION = Chef::VersionString.new("13.4.5")
end
#