diff options
author | Chef Expeditor <chef-ci@chef.io> | 2018-12-13 04:25:13 +0000 |
---|---|---|
committer | Chef Expeditor <chef-ci@chef.io> | 2018-12-13 04:25:13 +0000 |
commit | f840677605ccdf9e15e742163028b069eeb8b6e8 (patch) | |
tree | 0ad52919eb64d1fe27bfcd86144091b538c810be | |
parent | 6bd78908bd9a804506775d7e47a4f2a67a544d0a (diff) | |
download | chef-f840677605ccdf9e15e742163028b069eeb8b6e8.tar.gz |
Bump version to 15.0.105 by Chef Expeditorv15.0.105
Obvious fix; these changes are the result of automation not creative thinking.
-rw-r--r-- | CHANGELOG.md | 7 | ||||
-rw-r--r-- | Gemfile.lock | 18 | ||||
-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, 16 insertions, 15 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index 06fe6c43c5..fc1d0a4c0f 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.104 --> -## [v15.0.104](https://github.com/chef/chef/tree/v15.0.104) (2018-12-11) +<!-- latest_release 15.0.105 --> +## [v15.0.105](https://github.com/chef/chef/tree/v15.0.105) (2018-12-13) #### Merged Pull Requests -- Chef 15: Windows Server 2019 version detection [#8031](https://github.com/chef/chef/pull/8031) ([stuartpreston](https://github.com/stuartpreston)) +- Remove travis apt proxy before running functional tests [#8040](https://github.com/chef/chef/pull/8040) ([lamont-granquist](https://github.com/lamont-granquist)) <!-- latest_release --> <!-- release_rollup --> ### Changes since latest stable release #### Merged Pull Requests +- Remove travis apt proxy before running functional tests [#8040](https://github.com/chef/chef/pull/8040) ([lamont-granquist](https://github.com/lamont-granquist)) <!-- 15.0.105 --> - Chef 15: Windows Server 2019 version detection [#8031](https://github.com/chef/chef/pull/8031) ([stuartpreston](https://github.com/stuartpreston)) <!-- 15.0.104 --> - Allow the use of tagged?(tags) method in both only_if and not_if blocks [#7977](https://github.com/chef/chef/pull/7977) ([kapilchouhan99](https://github.com/kapilchouhan99)) <!-- 15.0.103 --> - Bugfixes to powershell_package_source [#8025](https://github.com/chef/chef/pull/8025) ([Happycoil](https://github.com/Happycoil)) <!-- 15.0.102 --> diff --git a/Gemfile.lock b/Gemfile.lock index 16701f2c76..236efb7cbf 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -27,10 +27,10 @@ GIT PATH remote: . specs: - chef (15.0.104) + chef (15.0.105) addressable bundler (>= 1.10) - chef-config (= 15.0.104) + chef-config (= 15.0.105) 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.104-universal-mingw32) + chef (15.0.105-universal-mingw32) addressable bundler (>= 1.10) - chef-config (= 15.0.104) + chef-config (= 15.0.105) 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.104) + chef-config (15.0.105) addressable fuzzyurl mixlib-config (>= 2.2.12, < 3.0) @@ -194,17 +194,17 @@ GEM addressable (~> 2.3) libyajl2 (1.2.0) method_source (0.9.2) - mixlib-archive (0.4.18) + mixlib-archive (0.4.19) mixlib-log - mixlib-archive (0.4.18-universal-mingw32) + mixlib-archive (0.4.19-universal-mingw32) mixlib-log mixlib-authentication (2.1.1) mixlib-cli (1.7.0) mixlib-config (2.2.13) tomlrb mixlib-log (2.0.4) - mixlib-shellout (2.4.2) - mixlib-shellout (2.4.2-universal-mingw32) + mixlib-shellout (2.4.4) + mixlib-shellout (2.4.4-universal-mingw32) win32-process (~> 0.8.2) wmi-lite (~> 1.0) multi_json (1.13.1) @@ -1 +1 @@ -15.0.104
\ No newline at end of file +15.0.105
\ 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 8c580d1978..0734a481dc 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.104".freeze + VERSION = "15.0.105".freeze end # diff --git a/lib/chef/version.rb b/lib/chef/version.rb index eed57157f8..fb716b3c0a 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.104") + VERSION = Chef::VersionString.new("15.0.105") end # |