summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChef Expeditor <chef-ci@chef.io>2018-10-26 22:12:41 +0000
committerChef Expeditor <chef-ci@chef.io>2018-10-26 22:12:41 +0000
commit19fa0db16f3f2952c378eeb37a4d15e9a142a0be (patch)
tree2e1f8d21b9e18d4b4c07a4cdfc8e1e7052e1c2e6
parenta0742fc4d6a017cdbb721f2faa8e30cd4c74101a (diff)
downloadchef-19fa0db16f3f2952c378eeb37a4d15e9a142a0be.tar.gz
Bump version to 15.0.5 by Chef Expeditorv15.0.5
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 a07f7ee011..fba63454b5 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.4 -->
-## [v15.0.4](https://github.com/chef/chef/tree/v15.0.4) (2018-10-26)
+<!-- latest_release 15.0.5 -->
+## [v15.0.5](https://github.com/chef/chef/tree/v15.0.5) (2018-10-26)
#### Merged Pull Requests
-- Do the shell_out deprecations for Chef-15. [#7788](https://github.com/chef/chef/pull/7788) ([lamont-granquist](https://github.com/lamont-granquist))
+- Remove legacy require_recipe DSL method [#7790](https://github.com/chef/chef/pull/7790) ([tas50](https://github.com/tas50))
<!-- latest_release -->
<!-- release_rollup -->
### Changes since latest stable release
#### Merged Pull Requests
+- Remove legacy require_recipe DSL method [#7790](https://github.com/chef/chef/pull/7790) ([tas50](https://github.com/tas50)) <!-- 15.0.5 -->
- Do the shell_out deprecations for Chef-15. [#7788](https://github.com/chef/chef/pull/7788) ([lamont-granquist](https://github.com/lamont-granquist)) <!-- 15.0.4 -->
- Update description fields from the docs site [#7784](https://github.com/chef/chef/pull/7784) ([tas50](https://github.com/tas50)) <!-- 15.0.3 -->
- Make all Chef 14 preview resources into full resources [#7786](https://github.com/chef/chef/pull/7786) ([tas50](https://github.com/tas50)) <!-- 15.0.2 -->
diff --git a/Gemfile.lock b/Gemfile.lock
index 46f332a34c..0db4a26e92 100644
--- a/Gemfile.lock
+++ b/Gemfile.lock
@@ -27,10 +27,10 @@ GIT
PATH
remote: .
specs:
- chef (15.0.4)
+ chef (15.0.5)
addressable
bundler (>= 1.10)
- chef-config (= 15.0.4)
+ chef-config (= 15.0.5)
chef-zero (>= 13.0)
diff-lcs (~> 1.2, >= 1.2.4)
erubis (~> 2.7)
@@ -57,10 +57,10 @@ PATH
specinfra (~> 2.10)
syslog-logger (~> 1.6)
uuidtools (~> 2.1.5)
- chef (15.0.4-universal-mingw32)
+ chef (15.0.5-universal-mingw32)
addressable
bundler (>= 1.10)
- chef-config (= 15.0.4)
+ chef-config (= 15.0.5)
chef-zero (>= 13.0)
diff-lcs (~> 1.2, >= 1.2.4)
erubis (~> 2.7)
@@ -103,7 +103,7 @@ PATH
PATH
remote: chef-config
specs:
- chef-config (15.0.4)
+ chef-config (15.0.5)
addressable
fuzzyurl
mixlib-config (>= 2.2.12, < 3.0)
diff --git a/VERSION b/VERSION
index dbe8a10a6e..8fc2ffdd13 100644
--- a/VERSION
+++ b/VERSION
@@ -1 +1 @@
-15.0.4 \ No newline at end of file
+15.0.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 efc0ab76cb..e34ff36595 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.4".freeze
+ VERSION = "15.0.5".freeze
end
#
diff --git a/lib/chef/version.rb b/lib/chef/version.rb
index d9cf7e110e..a8ec784fba 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.4")
+ VERSION = Chef::VersionString.new("15.0.5")
end
#