diff options
-rw-r--r-- | CHANGELOG.md | 17 | ||||
-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, 18 insertions, 15 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index 2ec81353de..97656b4391 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,10 +1,18 @@ This changelog reflects the current state of chef's master branch on github and may not reflect the current released version of chef, which is [![Gem Version](https://badge.fury.io/rb/chef.svg)](https://badge.fury.io/rb/chef). -## [v13.0.105](https://github.com/chef/chef/tree/v13.0.105) (2017-04-05) -[Full Changelog](https://github.com/chef/chef/compare/v12.19.36...v13.0.105) +## [v13.0.106](https://github.com/chef/chef/tree/v13.0.106) (2017-04-06) +[Full Changelog](https://github.com/chef/chef/compare/v13.0.106...v13.0.106) **Merged pull requests:** +- Chef-13: better solution to gem\_package source issues [\#6028](https://github.com/chef/chef/pull/6028) ([lamont-granquist](https://github.com/lamont-granquist)) + +## [v13.0.106](https://github.com/chef/chef/tree/v13.0.106) (2017-04-05) +[Full Changelog](https://github.com/chef/chef/compare/v12.19.36...v13.0.106) + +**Merged pull requests:** + +- Chef-13: tweaks to rubygems source option for urls [\#5995](https://github.com/chef/chef/pull/5995) ([lamont-granquist](https://github.com/lamont-granquist)) - Chef-13 knife search exit 1 when no results [\#5994](https://github.com/chef/chef/pull/5994) ([lamont-granquist](https://github.com/lamont-granquist)) - Chef-13: remove iconv from the chef build [\#5993](https://github.com/chef/chef/pull/5993) ([lamont-granquist](https://github.com/lamont-granquist)) - Chef-13: coerce package options property to an Array [\#5991](https://github.com/chef/chef/pull/5991) ([lamont-granquist](https://github.com/lamont-granquist)) @@ -46,11 +54,6 @@ This changelog reflects the current state of chef's master branch on github and - Chef-13: Nillable properties [\#5907](https://github.com/chef/chef/pull/5907) ([lamont-granquist](https://github.com/lamont-granquist)) - Chef-13: freeze merged node attribute [\#5905](https://github.com/chef/chef/pull/5905) ([lamont-granquist](https://github.com/lamont-granquist)) - bump ruby to 2.3.3 [\#5902](https://github.com/chef/chef/pull/5902) ([lamont-granquist](https://github.com/lamont-granquist)) -- Remove the easy\_install resource [\#5901](https://github.com/chef/chef/pull/5901) ([coderanger](https://github.com/coderanger)) -- Chef-13: Remove declare\_resource create\_if\_missing API [\#5900](https://github.com/chef/chef/pull/5900) ([lamont-granquist](https://github.com/lamont-granquist)) -- Properly use chef-shell in SoloSession by deprecating old behavior into SoloLegacySession [\#5898](https://github.com/chef/chef/pull/5898) ([afiune](https://github.com/afiune)) -- Chef-13: properly deep dup Node\#to\_hash [\#5896](https://github.com/chef/chef/pull/5896) ([lamont-granquist](https://github.com/lamont-granquist)) -- Chef-13: remove method\_missing access to node object. [\#5895](https://github.com/chef/chef/pull/5895) ([lamont-granquist](https://github.com/lamont-granquist)) ## [v12.19.33](https://github.com/chef/chef/tree/v12.19.33) (2017-02-16) [Full Changelog](https://github.com/chef/chef/compare/v12.18.31...v12.19.33) diff --git a/Gemfile.lock b/Gemfile.lock index 54b375a8ae..13a6e8fdcd 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -113,10 +113,10 @@ GIT PATH remote: . specs: - chef (13.0.106) + chef (13.0.107) addressable bundler (>= 1.10) - chef-config (= 13.0.106) + chef-config (= 13.0.107) chef-zero (>= 13.0) diff-lcs (~> 1.2, >= 1.2.4) erubis (~> 2.7) @@ -142,10 +142,10 @@ PATH specinfra (~> 2.10) syslog-logger (~> 1.6) uuidtools (~> 2.1.5) - chef (13.0.106-universal-mingw32) + chef (13.0.107-universal-mingw32) addressable bundler (>= 1.10) - chef-config (= 13.0.106) + chef-config (= 13.0.107) chef-zero (>= 13.0) diff-lcs (~> 1.2, >= 1.2.4) erubis (~> 2.7) @@ -186,7 +186,7 @@ PATH PATH remote: chef-config specs: - chef-config (13.0.106) + chef-config (13.0.107) addressable fuzzyurl mixlib-config (~> 2.0) @@ -1 +1 @@ -13.0.106
\ No newline at end of file +13.0.107
\ 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 4aa5c721cc..a48e49e962 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 = "13.0.106" + VERSION = "13.0.107" end # diff --git a/lib/chef/version.rb b/lib/chef/version.rb index 641f19233e..13319ad27c 100644 --- a/lib/chef/version.rb +++ b/lib/chef/version.rb @@ -21,7 +21,7 @@ class Chef CHEF_ROOT = File.expand_path("../..", __FILE__) - VERSION = "13.0.106" + VERSION = "13.0.107" end # |