summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChef Expeditor <eng-services-ops+chef-ci@chef.io>2018-06-21 17:47:59 +0000
committerChef Expeditor <eng-services-ops+chef-ci@chef.io>2018-06-21 17:47:59 +0000
commitbec29232c2b42609a4746f4df9141758af87287f (patch)
tree0e82d2c3bc99b8c2262a3251950f9fe97f41a4c3
parentafc61f349906a8c884f7f060c5e50c856e2d9885 (diff)
downloadchef-bec29232c2b42609a4746f4df9141758af87287f.tar.gz
Bump version to 14.3.20 by Chef Expeditorv14.3.20
-rw-r--r--CHANGELOG.md7
-rw-r--r--Gemfile.lock12
-rw-r--r--VERSION2
-rw-r--r--chef-config/lib/chef-config/version.rb2
-rw-r--r--lib/chef/version.rb2
5 files changed, 13 insertions, 12 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 0e3204ade2..67238dcbab 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,15 +1,16 @@
<!-- usage documentation: http://expeditor-docs.es.chef.io/configuration/changelog/ -->
-<!-- latest_release 14.3.19 -->
-## [v14.3.19](https://github.com/chef/chef/tree/v14.3.19) (2018-06-21)
+<!-- latest_release 14.3.20 -->
+## [v14.3.20](https://github.com/chef/chef/tree/v14.3.20) (2018-06-21)
#### Merged Pull Requests
-- Rework the credentials file system to support any config keys. [#7387](https://github.com/chef/chef/pull/7387) ([coderanger](https://github.com/coderanger))
+- deprecate old shell_out APIs [#7382](https://github.com/chef/chef/pull/7382) ([lamont-granquist](https://github.com/lamont-granquist))
<!-- latest_release -->
<!-- release_rollup since=14.2.0 -->
### Changes since 14.2.0 release
#### Merged Pull Requests
+- deprecate old shell_out APIs [#7382](https://github.com/chef/chef/pull/7382) ([lamont-granquist](https://github.com/lamont-granquist)) <!-- 14.3.20 -->
- Rework the credentials file system to support any config keys. [#7387](https://github.com/chef/chef/pull/7387) ([coderanger](https://github.com/coderanger)) <!-- 14.3.19 -->
- Unification of shell_out APIs [#7372](https://github.com/chef/chef/pull/7372) ([lamont-granquist](https://github.com/lamont-granquist)) <!-- 14.3.18 -->
- Remove the unused audit test cookbook [#7378](https://github.com/chef/chef/pull/7378) ([tas50](https://github.com/tas50)) <!-- 14.3.17 -->
diff --git a/Gemfile.lock b/Gemfile.lock
index c32d202ea3..578dfa649c 100644
--- a/Gemfile.lock
+++ b/Gemfile.lock
@@ -9,10 +9,10 @@ GIT
PATH
remote: .
specs:
- chef (14.3.19)
+ chef (14.3.20)
addressable
bundler (>= 1.10)
- chef-config (= 14.3.19)
+ chef-config (= 14.3.20)
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.3.19-universal-mingw32)
+ chef (14.3.20-universal-mingw32)
addressable
bundler (>= 1.10)
- chef-config (= 14.3.19)
+ chef-config (= 14.3.20)
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.3.19)
+ chef-config (14.3.20)
addressable
fuzzyurl
mixlib-config (~> 2.0)
@@ -175,7 +175,7 @@ GEM
addressable (~> 2.3)
libyajl2 (1.2.0)
method_source (0.9.0)
- mixlib-archive (0.4.7)
+ mixlib-archive (0.4.8)
mixlib-log
mixlib-authentication (2.1.1)
mixlib-cli (1.7.0)
diff --git a/VERSION b/VERSION
index 86f9832188..bbfc43ee04 100644
--- a/VERSION
+++ b/VERSION
@@ -1 +1 @@
-14.3.19 \ No newline at end of file
+14.3.20 \ 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 428ce0c166..aa50742ba8 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.3.19"
+ VERSION = "14.3.20"
end
#
diff --git a/lib/chef/version.rb b/lib/chef/version.rb
index 4efb9e2d02..e2d52a6526 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.3.19")
+ VERSION = Chef::VersionString.new("14.3.20")
end
#