diff --git a/CHANGELOG.md b/CHANGELOG.md index 3948f6a..35de400 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Change Log +## [3.0.1](https://github.com/chef/cheffish/tree/3.0.1) (2016-08-24) +[Full Changelog](https://github.com/chef/cheffish/compare/v3.0.0...3.0.1) + +**Fixed bugs:** + +- Fix JSON rendering for arrays [\#110](https://github.com/chef/cheffish/pull/110) ([jkeiser](https://github.com/jkeiser)) + ## [v3.0.0](https://github.com/chef/cheffish/tree/v3.0.0) (2016-08-11) [Full Changelog](https://github.com/chef/cheffish/compare/v2.0.5...v3.0.0) @@ -10,10 +17,6 @@ ## [v2.0.5](https://github.com/chef/cheffish/tree/v2.0.5) (2016-08-03) [Full Changelog](https://github.com/chef/cheffish/compare/v2.0.4...v2.0.5) -**Closed issues:** - -- Chef acl updates permissions when it doesn't need to [\#92](https://github.com/chef/cheffish/issues/92) - **Merged pull requests:** - Cleaning up some provisioning warnings [\#107](https://github.com/chef/cheffish/pull/107) ([tyler-ball](https://github.com/tyler-ball)) diff --git a/Rakefile b/Rakefile index 86b6525..4c3618d 100644 --- a/Rakefile +++ b/Rakefile @@ -28,9 +28,9 @@ begin GitHubChangelogGenerator::RakeTask.new :changelog do |config| require "cheffish/version" config.future_release = Cheffish::VERSION - config.enhancement_labels = "enhancement,Enhancement,New Feature".split(',') - config.bug_labels = "bug,Bug,Improvement,Upstream Bug".split(',') - config.exclude_labels = "duplicate,question,invalid,wontfix,no_changelog".split(',') + config.enhancement_labels = "enhancement,Enhancement,New Feature,Feature".split(",") + config.bug_labels = "bug,Bug,Improvement,Upstream Bug".split(",") + config.exclude_labels = "duplicate,question,invalid,wontfix,no_changelog,Exclude From Changelog,Question,Discussion".split(",") end rescue LoadError end diff --git a/lib/cheffish/version.rb b/lib/cheffish/version.rb index 292d141..87266e7 100644 --- a/lib/cheffish/version.rb +++ b/lib/cheffish/version.rb @@ -1,3 +1,3 @@ module Cheffish - VERSION = '3.0.0' + VERSION = '3.0.1' end