diff options
author | Chef Expeditor <chef-ci@chef.io> | 2019-08-14 16:42:36 +0000 |
---|---|---|
committer | Chef Expeditor <chef-ci@chef.io> | 2019-08-14 16:42:36 +0000 |
commit | 750bc2c08b49e51cb32bce3fa9b1e9531fe0d562 (patch) | |
tree | 4cc979e3c67d631b2ae8f5e3004b04dd551ebd0b | |
parent | 9f97f66d73b9c540d1e17f48c9faac4053c2af8b (diff) | |
download | chef-750bc2c08b49e51cb32bce3fa9b1e9531fe0d562.tar.gz |
Bump version to 14.13.15 by Chef Expeditorv14.13.15
Obvious fix; these changes are the result of automation not creative thinking.
-rw-r--r-- | CHANGELOG.md | 7 | ||||
-rw-r--r-- | Gemfile.lock | 10 | ||||
-rw-r--r-- | VERSION | 2 | ||||
-rw-r--r-- | chef-config/lib/chef-config/version.rb | 2 | ||||
-rw-r--r-- | lib/chef/version.rb | 2 |
5 files changed, 12 insertions, 11 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index 951e62f51c..6e13bdc3ab 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,15 +1,16 @@ <!-- usage documentation: http://expeditor-docs.es.chef.io/configuration/changelog/ --> -<!-- latest_release 14.13.14 --> -## [v14.13.14](https://github.com/chef/chef/tree/v14.13.14) (2019-08-13) +<!-- latest_release 14.13.15 --> +## [v14.13.15](https://github.com/chef/chef/tree/v14.13.15) (2019-08-14) #### Merged Pull Requests -- Chef-14: Raise an error on Chef 14 when trying to bootstrap Chef 15 [#8782](https://github.com/chef/chef/pull/8782) ([vsingh-msys](https://github.com/vsingh-msys)) +- Deprecate Ubuntu 14 + SLES 11 [#8818](https://github.com/chef/chef/pull/8818) ([christopher-snapp](https://github.com/christopher-snapp)) <!-- latest_release --> <!-- release_rollup since=14.13.11 --> ### Changes since 14.13.11 release #### Merged Pull Requests +- Deprecate Ubuntu 14 + SLES 11 [#8818](https://github.com/chef/chef/pull/8818) ([christopher-snapp](https://github.com/christopher-snapp)) <!-- 14.13.15 --> - Chef-14: Raise an error on Chef 14 when trying to bootstrap Chef 15 [#8782](https://github.com/chef/chef/pull/8782) ([vsingh-msys](https://github.com/vsingh-msys)) <!-- 14.13.14 --> - Stop building Chef Infra Client 14.x on FreeBSD 10 [#8810](https://github.com/chef/chef/pull/8810) ([jeremiahsnapp](https://github.com/jeremiahsnapp)) <!-- 14.13.13 --> - Chef-14: fix zypper_package upgrade provider and unit tests to verify [#8799](https://github.com/chef/chef/pull/8799) ([lamont-granquist](https://github.com/lamont-granquist)) <!-- 14.13.12 --> diff --git a/Gemfile.lock b/Gemfile.lock index 9fc4eb7f6a..595c99baa4 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,10 +1,10 @@ PATH remote: . specs: - chef (14.13.14) + chef (14.13.15) addressable bundler (>= 1.10) - chef-config (= 14.13.14) + chef-config (= 14.13.15) chef-zero (>= 13.0) diff-lcs (~> 1.2, >= 1.2.4) erubis (~> 2.7) @@ -31,10 +31,10 @@ PATH specinfra (~> 2.10) syslog-logger (~> 1.6) uuidtools (~> 2.1.5) - chef (14.13.14-universal-mingw32) + chef (14.13.15-universal-mingw32) addressable bundler (>= 1.10) - chef-config (= 14.13.14) + chef-config (= 14.13.15) chef-zero (>= 13.0) diff-lcs (~> 1.2, >= 1.2.4) erubis (~> 2.7) @@ -77,7 +77,7 @@ PATH PATH remote: chef-config specs: - chef-config (14.13.14) + chef-config (14.13.15) addressable fuzzyurl mixlib-config (>= 2.2.12, < 4.0) @@ -1 +1 @@ -14.13.14
\ No newline at end of file +14.13.15
\ 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 5d5a20f3e3..7478a225d6 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.13.14".freeze + VERSION = "14.13.15".freeze end # diff --git a/lib/chef/version.rb b/lib/chef/version.rb index a02f7f6162..76134c94c4 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.13.14") + VERSION = Chef::VersionString.new("14.13.15") end # |