summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChef Expeditor <chef-ci@chef.io>2019-05-01 00:20:25 +0000
committerChef Expeditor <chef-ci@chef.io>2019-05-01 00:20:25 +0000
commit024e3c261da7159562e9c3712fb1b533297c7610 (patch)
tree6706f53ea913fc9a6baf2662438b8b8226ef7480
parent58bcea78cb99d5f0ec1abf6f4870a3c0b9b3a2db (diff)
downloadchef-024e3c261da7159562e9c3712fb1b533297c7610.tar.gz
Bump version to 15.0.247 by Chef Expeditorv15.0.247
Obvious fix; these changes are the result of automation not creative thinking.
-rw-r--r--CHANGELOG.md7
-rw-r--r--Gemfile.lock14
-rw-r--r--VERSION2
-rw-r--r--chef-bin/lib/chef-bin/version.rb2
-rw-r--r--chef-config/lib/chef-config/version.rb2
-rw-r--r--lib/chef/version.rb2
6 files changed, 15 insertions, 14 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 69264c864e..c981616284 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.245 -->
-## [v15.0.245](https://github.com/chef/chef/tree/v15.0.245) (2019-04-30)
+<!-- latest_release 15.0.247 -->
+## [v15.0.247](https://github.com/chef/chef/tree/v15.0.247) (2019-05-01)
#### Merged Pull Requests
-- fix chef-bin bundling in omnibus [#8439](https://github.com/chef/chef/pull/8439) ([lamont-granquist](https://github.com/lamont-granquist))
+- file: Tell people what file a link is pointing at in warning messages [#8417](https://github.com/chef/chef/pull/8417) ([jaymzh](https://github.com/jaymzh))
<!-- latest_release -->
<!-- release_rollup -->
### Changes since latest stable release
#### Merged Pull Requests
+- file: Tell people what file a link is pointing at in warning messages [#8417](https://github.com/chef/chef/pull/8417) ([jaymzh](https://github.com/jaymzh)) <!-- 15.0.247 -->
- fix chef-bin bundling in omnibus [#8439](https://github.com/chef/chef/pull/8439) ([lamont-granquist](https://github.com/lamont-granquist)) <!-- 15.0.245 -->
- Fixed bootstrap error while using --msi-url option with knife bootstrap winrm [#8435](https://github.com/chef/chef/pull/8435) ([Vasu1105](https://github.com/Vasu1105)) <!-- 15.0.244 -->
- remove windows executables from windows gemspec [#8430](https://github.com/chef/chef/pull/8430) ([lamont-granquist](https://github.com/lamont-granquist)) <!-- 15.0.243 -->
diff --git a/Gemfile.lock b/Gemfile.lock
index dae6173772..91b35118af 100644
--- a/Gemfile.lock
+++ b/Gemfile.lock
@@ -27,11 +27,11 @@ GIT
PATH
remote: .
specs:
- chef (15.0.246)
+ chef (15.0.247)
addressable
bcrypt_pbkdf (~> 1.0)
bundler (>= 1.10)
- chef-config (= 15.0.246)
+ chef-config (= 15.0.247)
chef-zero (>= 14.0.11)
diff-lcs (~> 1.2, >= 1.2.4)
ed25519 (~> 1.2)
@@ -56,11 +56,11 @@ PATH
train-core (~> 2.0, >= 2.0.12)
tty-screen (~> 0.6)
uuidtools (~> 2.1.5)
- chef (15.0.246-universal-mingw32)
+ chef (15.0.247-universal-mingw32)
addressable
bcrypt_pbkdf (~> 1.0)
bundler (>= 1.10)
- chef-config (= 15.0.246)
+ chef-config (= 15.0.247)
chef-zero (>= 14.0.11)
diff-lcs (~> 1.2, >= 1.2.4)
ed25519 (~> 1.2)
@@ -101,13 +101,13 @@ PATH
PATH
remote: chef-bin
specs:
- chef-bin (15.0.246)
- chef (= 15.0.246)
+ chef-bin (15.0.247)
+ chef (= 15.0.247)
PATH
remote: chef-config
specs:
- chef-config (15.0.246)
+ chef-config (15.0.247)
addressable
fuzzyurl
mixlib-config (>= 2.2.12, < 4.0)
diff --git a/VERSION b/VERSION
index 12cd3a33cf..60050abaaa 100644
--- a/VERSION
+++ b/VERSION
@@ -1 +1 @@
-15.0.246 \ No newline at end of file
+15.0.247 \ No newline at end of file
diff --git a/chef-bin/lib/chef-bin/version.rb b/chef-bin/lib/chef-bin/version.rb
index c0af0936fa..eff9f9fd01 100644
--- a/chef-bin/lib/chef-bin/version.rb
+++ b/chef-bin/lib/chef-bin/version.rb
@@ -21,7 +21,7 @@
module ChefBin
CHEFBIN_ROOT = File.expand_path("../..", __FILE__)
- VERSION = "15.0.246".freeze
+ VERSION = "15.0.247".freeze
end
#
diff --git a/chef-config/lib/chef-config/version.rb b/chef-config/lib/chef-config/version.rb
index ae6fb9ef8e..613891b311 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.246".freeze
+ VERSION = "15.0.247".freeze
end
#
diff --git a/lib/chef/version.rb b/lib/chef/version.rb
index 5bea0d6f04..f7bd08a81e 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.246")
+ VERSION = Chef::VersionString.new("15.0.247")
end
#