summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChef Expeditor <chef-ci@chef.io>2018-11-20 00:30:17 +0000
committerChef Expeditor <chef-ci@chef.io>2018-11-20 00:30:17 +0000
commit403bf5a725cac444656606942de95920db7242eb (patch)
treeb804fc2bb5bb30e6e985450c78f8cbc59100fa1f
parentab8b2f8661ace775449d47b05745195e83b35bc4 (diff)
downloadchef-403bf5a725cac444656606942de95920db7242eb.tar.gz
Bump version to 15.0.79 by Chef Expeditorv15.0.79
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 4711f007a8..d82323c07f 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.78 -->
-## [v15.0.78](https://github.com/chef/chef/tree/v15.0.78) (2018-11-19)
+<!-- latest_release 15.0.79 -->
+## [v15.0.79](https://github.com/chef/chef/tree/v15.0.79) (2018-11-20)
#### Merged Pull Requests
-- Chef-15: require instead of load libraries [#7954](https://github.com/chef/chef/pull/7954) ([lamont-granquist](https://github.com/lamont-granquist))
+- Chef-15: switch default of allow_downgrade to true [#7953](https://github.com/chef/chef/pull/7953) ([lamont-granquist](https://github.com/lamont-granquist))
<!-- latest_release -->
<!-- release_rollup -->
### Changes since latest stable release
#### Merged Pull Requests
+- Chef-15: switch default of allow_downgrade to true [#7953](https://github.com/chef/chef/pull/7953) ([lamont-granquist](https://github.com/lamont-granquist)) <!-- 15.0.79 -->
- Chef-15: require instead of load libraries [#7954](https://github.com/chef/chef/pull/7954) ([lamont-granquist](https://github.com/lamont-granquist)) <!-- 15.0.78 -->
- Allow Integers for all group / owner properties [#7948](https://github.com/chef/chef/pull/7948) ([tas50](https://github.com/tas50)) <!-- 15.0.77 -->
- Remove unused yum_timeout and yum_lock_timeout configs [#7909](https://github.com/chef/chef/pull/7909) ([tas50](https://github.com/tas50)) <!-- 15.0.76 -->
diff --git a/Gemfile.lock b/Gemfile.lock
index cea0d6673b..383558ffc6 100644
--- a/Gemfile.lock
+++ b/Gemfile.lock
@@ -27,10 +27,10 @@ GIT
PATH
remote: .
specs:
- chef (15.0.78)
+ chef (15.0.79)
addressable
bundler (>= 1.10)
- chef-config (= 15.0.78)
+ chef-config (= 15.0.79)
chef-zero (>= 14.0.11)
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.78-universal-mingw32)
+ chef (15.0.79-universal-mingw32)
addressable
bundler (>= 1.10)
- chef-config (= 15.0.78)
+ chef-config (= 15.0.79)
chef-zero (>= 14.0.11)
diff-lcs (~> 1.2, >= 1.2.4)
erubis (~> 2.7)
@@ -104,7 +104,7 @@ PATH
PATH
remote: chef-config
specs:
- chef-config (15.0.78)
+ chef-config (15.0.79)
addressable
fuzzyurl
mixlib-config (>= 2.2.12, < 3.0)
diff --git a/VERSION b/VERSION
index 52c9161411..adb90c6b70 100644
--- a/VERSION
+++ b/VERSION
@@ -1 +1 @@
-15.0.78 \ No newline at end of file
+15.0.79 \ 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 63bf69c377..f64ae0af66 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.78".freeze
+ VERSION = "15.0.79".freeze
end
#
diff --git a/lib/chef/version.rb b/lib/chef/version.rb
index 60e4786d01..85915f0014 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.78")
+ VERSION = Chef::VersionString.new("15.0.79")
end
#