summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChef Expeditor <chef-ci@chef.io>2019-04-15 21:57:41 +0000
committerChef Expeditor <chef-ci@chef.io>2019-04-15 21:57:41 +0000
commit62ea7382021593d117a78a0d5f60e39722c2e4d4 (patch)
treec84e2f42f6bb9dcb1a9c73903105e8fbb01a83c8
parent890e090e74eb435b8ed04b61a6a41f4649f4b9ab (diff)
downloadchef-62ea7382021593d117a78a0d5f60e39722c2e4d4.tar.gz
Bump version to 15.0.215 by Chef Expeditorv15.0.215
Obvious fix; these changes are the result of automation not creative thinking.
-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 1c7d2bfb34..4e851fc289 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,15 +1,16 @@
<!-- usage documentation: http://expeditor-docs.es.chef.io/configuration/changelog/ -->
-<!-- latest_release 15.0.214 -->
-## [v15.0.214](https://github.com/chef/chef/tree/v15.0.214) (2019-04-15)
+<!-- latest_release 15.0.215 -->
+## [v15.0.215](https://github.com/chef/chef/tree/v15.0.215) (2019-04-15)
#### Merged Pull Requests
-- Add a new archive_file resource from the libarchive cookbook [#8028](https://github.com/chef/chef/pull/8028) ([tas50](https://github.com/tas50))
+- Allow empty strings in -o to result in empty override run list [#8370](https://github.com/chef/chef/pull/8370) ([lamont-granquist](https://github.com/lamont-granquist))
<!-- latest_release -->
<!-- release_rollup -->
### Changes since latest stable release
#### Merged Pull Requests
+- Allow empty strings in -o to result in empty override run list [#8370](https://github.com/chef/chef/pull/8370) ([lamont-granquist](https://github.com/lamont-granquist)) <!-- 15.0.215 -->
- Add a new archive_file resource from the libarchive cookbook [#8028](https://github.com/chef/chef/pull/8028) ([tas50](https://github.com/tas50)) <!-- 15.0.214 -->
- Drop privileges before creating files in solo mode [#8361](https://github.com/chef/chef/pull/8361) ([btm](https://github.com/btm)) <!-- 15.0.213 -->
- Add Verification tests in Buildkite [#8357](https://github.com/chef/chef/pull/8357) ([jaymalasinha](https://github.com/jaymalasinha)) <!-- 15.0.212 -->
diff --git a/Gemfile.lock b/Gemfile.lock
index 1f7db94efd..b203c06f50 100644
--- a/Gemfile.lock
+++ b/Gemfile.lock
@@ -27,10 +27,10 @@ GIT
PATH
remote: .
specs:
- chef (15.0.214)
+ chef (15.0.215)
addressable
bundler (>= 1.10)
- chef-config (= 15.0.214)
+ chef-config (= 15.0.215)
chef-zero (>= 14.0.11)
diff-lcs (~> 1.2, >= 1.2.4)
erubis (~> 2.7)
@@ -52,10 +52,10 @@ PATH
proxifier (~> 1.0)
syslog-logger (~> 1.6)
uuidtools (~> 2.1.5)
- chef (15.0.214-universal-mingw32)
+ chef (15.0.215-universal-mingw32)
addressable
bundler (>= 1.10)
- chef-config (= 15.0.214)
+ chef-config (= 15.0.215)
chef-zero (>= 14.0.11)
diff-lcs (~> 1.2, >= 1.2.4)
erubis (~> 2.7)
@@ -93,7 +93,7 @@ PATH
PATH
remote: chef-config
specs:
- chef-config (15.0.214)
+ chef-config (15.0.215)
addressable
fuzzyurl
mixlib-config (>= 2.2.12, < 4.0)
diff --git a/VERSION b/VERSION
index 9cbae34018..c57f95eee4 100644
--- a/VERSION
+++ b/VERSION
@@ -1 +1 @@
-15.0.214 \ No newline at end of file
+15.0.215 \ 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 e41d239ce9..12a921736a 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 = "15.0.214".freeze
+ VERSION = "15.0.215".freeze
end
#
diff --git a/lib/chef/version.rb b/lib/chef/version.rb
index 2d9d690ba9..459e7d809a 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("15.0.214")
+ VERSION = Chef::VersionString.new("15.0.215")
end
#