summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChef Expeditor <eng-services-ops+chef-ci@chef.io>2017-08-16 22:00:15 +0000
committerChef Expeditor <eng-services-ops+chef-ci@chef.io>2017-08-16 22:00:15 +0000
commitd09aa4556a539db269ff5a6f46c830e302877bbb (patch)
tree0cf5c9b7a80cd36542c78c03820d28a61c670cbf
parent81a6513849d9b0058e180e75c6dcbd99bfa71d5d (diff)
downloadchef-d09aa4556a539db269ff5a6f46c830e302877bbb.tar.gz
Bump version to 13.3.47 by Chef Expeditorv13.3.47
-rw-r--r--CHANGELOG.md11
-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, 15 insertions, 12 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 6cf0f471db..dcb5ce4fae 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,13 +1,16 @@
-<!-- latest_release 13.3.46 -->
-## [v13.3.46](https://github.com/chef/chef/tree/v13.3.46) (2017-08-15)
+<!-- latest_release 13.3.47 -->
+## [v13.3.47](https://github.com/chef/chef/tree/v13.3.47) (2017-08-16)
-#### Merged Pull Requests
-- Ignore validation errors in Resource#to_text [#6331](https://github.com/chef/chef/pull/6331) ([coderanger](https://github.com/coderanger))
+#### Bug Fixes
+- Pass json configuration to ShellSession class [#6314](https://github.com/chef/chef/pull/6314) ([btm](https://github.com/btm))
<!-- latest_release -->
<!-- release_rollup since=13.3.42 -->
### Changes since 13.3.42 release
+#### Bug Fixes
+- 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
- Add more items to the 13.3 release notes [#6325](https://github.com/chef/chef/pull/6325) ([tas50](https://github.com/tas50)) <!-- 13.3.43 -->
- Fix bad examples in the release notes [#6326](https://github.com/chef/chef/pull/6326) ([tas50](https://github.com/tas50)) <!-- 13.3.44 -->
diff --git a/Gemfile.lock b/Gemfile.lock
index bb456f69d1..fc0a094749 100644
--- a/Gemfile.lock
+++ b/Gemfile.lock
@@ -17,10 +17,10 @@ GIT
PATH
remote: .
specs:
- chef (13.3.46)
+ chef (13.3.47)
addressable
bundler (>= 1.10)
- chef-config (= 13.3.46)
+ chef-config (= 13.3.47)
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.3.46-universal-mingw32)
+ chef (13.3.47-universal-mingw32)
addressable
bundler (>= 1.10)
- chef-config (= 13.3.46)
+ chef-config (= 13.3.47)
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.3.46)
+ chef-config (13.3.47)
addressable
fuzzyurl
mixlib-config (~> 2.0)
diff --git a/VERSION b/VERSION
index cd774741a8..db6914fc5e 100644
--- a/VERSION
+++ b/VERSION
@@ -1 +1 @@
-13.3.46 \ No newline at end of file
+13.3.47 \ 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 5fd2149b35..9552a5002b 100644
--- a/chef-config/lib/chef-config/version.rb
+++ b/chef-config/lib/chef-config/version.rb
@@ -20,7 +20,7 @@
module ChefConfig
CHEFCONFIG_ROOT = File.expand_path("../..", __FILE__)
- VERSION = "13.3.46"
+ VERSION = "13.3.47"
end
#
diff --git a/lib/chef/version.rb b/lib/chef/version.rb
index 1d30b97614..fa9eab78da 100644
--- a/lib/chef/version.rb
+++ b/lib/chef/version.rb
@@ -22,7 +22,7 @@ require "chef/version_string"
class Chef
CHEF_ROOT = File.expand_path("../..", __FILE__)
- VERSION = Chef::VersionString.new("13.3.46")
+ VERSION = Chef::VersionString.new("13.3.47")
end
#