diff options
author | Chef Expeditor <chef-ci@chef.io> | 2018-11-20 09:24:08 +0000 |
---|---|---|
committer | Chef Expeditor <chef-ci@chef.io> | 2018-11-20 09:24:08 +0000 |
commit | b631df7190f949218aa0b30c2aeed6350dce7b00 (patch) | |
tree | 129f11c5db22dcbdd9ff5238fb54f455a3992c0a | |
parent | 7bb983c8358a05361bef4f77832d2f51978dd15a (diff) | |
download | chef-b631df7190f949218aa0b30c2aeed6350dce7b00.tar.gz |
Bump version to 15.0.80 by Chef Expeditorv15.0.80
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 d82323c07f..27fa101135 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.79 --> -## [v15.0.79](https://github.com/chef/chef/tree/v15.0.79) (2018-11-20) +<!-- latest_release 15.0.80 --> +## [v15.0.80](https://github.com/chef/chef/tree/v15.0.80) (2018-11-20) #### 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)) +- windows_share: Fix idempotency by removing the "everyone" access [#7956](https://github.com/chef/chef/pull/7956) ([tas50](https://github.com/tas50)) <!-- latest_release --> <!-- release_rollup --> ### Changes since latest stable release #### Merged Pull Requests +- windows_share: Fix idempotency by removing the "everyone" access [#7956](https://github.com/chef/chef/pull/7956) ([tas50](https://github.com/tas50)) <!-- 15.0.80 --> - 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 --> diff --git a/Gemfile.lock b/Gemfile.lock index 383558ffc6..d9da4e3eca 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -27,10 +27,10 @@ GIT PATH remote: . specs: - chef (15.0.79) + chef (15.0.80) addressable bundler (>= 1.10) - chef-config (= 15.0.79) + chef-config (= 15.0.80) 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.79-universal-mingw32) + chef (15.0.80-universal-mingw32) addressable bundler (>= 1.10) - chef-config (= 15.0.79) + chef-config (= 15.0.80) 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.79) + chef-config (15.0.80) addressable fuzzyurl mixlib-config (>= 2.2.12, < 3.0) @@ -1 +1 @@ -15.0.79
\ No newline at end of file +15.0.80
\ 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 f64ae0af66..fe1baaf183 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.79".freeze + VERSION = "15.0.80".freeze end # diff --git a/lib/chef/version.rb b/lib/chef/version.rb index 85915f0014..584c2852ca 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.79") + VERSION = Chef::VersionString.new("15.0.80") end # |