diff options
author | Matt Wrock <matt@mattwrock.com> | 2016-03-02 15:03:44 -0800 |
---|---|---|
committer | Matt Wrock <matt@mattwrock.com> | 2016-03-02 15:03:44 -0800 |
commit | a4d98365c1d68d7a24fba62783538951d2bbd2e0 (patch) | |
tree | 415d42c1ee56075b8157ef3bb76508c24a378a56 /Rakefile | |
parent | a8a450d6371835c596a94eee522edea8b70863d5 (diff) | |
download | chef-a4d98365c1d68d7a24fba62783538951d2bbd2e0.tar.gz |
release 12.8.0 changelogmw/version-bump
Diffstat (limited to 'Rakefile')
-rw-r--r-- | Rakefile | 9 |
1 files changed, 9 insertions, 0 deletions
@@ -71,3 +71,12 @@ begin rescue LoadError puts "yard is not available. (sudo) gem install yard to generate yard documentation." end + +require "github_changelog_generator/task" + +GitHubChangelogGenerator::RakeTask.new :changelog do |config| + config.future_release = Chef::VERSION + 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 |