summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChef Expeditor <chef-ci@chef.io>2019-04-11 19:41:16 +0000
committerChef Expeditor <chef-ci@chef.io>2019-04-11 19:41:16 +0000
commit49723849fe14f5205f982b2283cf93ddfa01423e (patch)
treee1dfb53f35416f61b2e13bf0e8bed2004e98e872
parent341d720cef809d73bbd54d36801feee95460986b (diff)
downloadchef-49723849fe14f5205f982b2283cf93ddfa01423e.tar.gz
Bump version to 15.0.210 by Chef Expeditorv15.0.210
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 40231ebafe..20e25c1a1d 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.209 -->
-## [v15.0.209](https://github.com/chef/chef/tree/v15.0.209) (2019-04-09)
+<!-- latest_release 15.0.210 -->
+## [v15.0.210](https://github.com/chef/chef/tree/v15.0.210) (2019-04-11)
#### Merged Pull Requests
-- Add Debian 10 testing to Travis [#8348](https://github.com/chef/chef/pull/8348) ([tas50](https://github.com/tas50))
+- Avoid occasionally randomly reusing a gid in tests [#8352](https://github.com/chef/chef/pull/8352) ([btm](https://github.com/btm))
<!-- latest_release -->
<!-- release_rollup -->
### Changes since latest stable release
#### Merged Pull Requests
+- Avoid occasionally randomly reusing a gid in tests [#8352](https://github.com/chef/chef/pull/8352) ([btm](https://github.com/btm)) <!-- 15.0.210 -->
- Add Debian 10 testing to Travis [#8348](https://github.com/chef/chef/pull/8348) ([tas50](https://github.com/tas50)) <!-- 15.0.209 -->
- Implement Chef::Resource#copy_properties_from [#8344](https://github.com/chef/chef/pull/8344) ([lamont-granquist](https://github.com/lamont-granquist)) <!-- 15.0.208 -->
- Add Ruby 2.6 testing Appveyor [#8349](https://github.com/chef/chef/pull/8349) ([tas50](https://github.com/tas50)) <!-- 15.0.207 -->
diff --git a/Gemfile.lock b/Gemfile.lock
index 7ca7281ba5..d346d8ec69 100644
--- a/Gemfile.lock
+++ b/Gemfile.lock
@@ -27,10 +27,10 @@ GIT
PATH
remote: .
specs:
- chef (15.0.209)
+ chef (15.0.210)
addressable
bundler (>= 1.10)
- chef-config (= 15.0.209)
+ chef-config (= 15.0.210)
chef-zero (>= 14.0.11)
diff-lcs (~> 1.2, >= 1.2.4)
erubis (~> 2.7)
@@ -51,10 +51,10 @@ PATH
proxifier (~> 1.0)
syslog-logger (~> 1.6)
uuidtools (~> 2.1.5)
- chef (15.0.209-universal-mingw32)
+ chef (15.0.210-universal-mingw32)
addressable
bundler (>= 1.10)
- chef-config (= 15.0.209)
+ chef-config (= 15.0.210)
chef-zero (>= 14.0.11)
diff-lcs (~> 1.2, >= 1.2.4)
erubis (~> 2.7)
@@ -91,7 +91,7 @@ PATH
PATH
remote: chef-config
specs:
- chef-config (15.0.209)
+ chef-config (15.0.210)
addressable
fuzzyurl
mixlib-config (>= 2.2.12, < 4.0)
diff --git a/VERSION b/VERSION
index 4468c46d10..e9a1656dc6 100644
--- a/VERSION
+++ b/VERSION
@@ -1 +1 @@
-15.0.209 \ No newline at end of file
+15.0.210 \ 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 18b6bc80cf..06bc43f0c8 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.209".freeze
+ VERSION = "15.0.210".freeze
end
#
diff --git a/lib/chef/version.rb b/lib/chef/version.rb
index 027a5d61b5..f9c309f5b1 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.209")
+ VERSION = Chef::VersionString.new("15.0.210")
end
#