summaryrefslogtreecommitdiff
path: root/Rakefile
diff options
context:
space:
mode:
authorMatt Wrock <matt@mattwrock.com>2016-03-02 15:03:44 -0800
committerMatt Wrock <matt@mattwrock.com>2016-03-02 15:03:44 -0800
commita4d98365c1d68d7a24fba62783538951d2bbd2e0 (patch)
tree415d42c1ee56075b8157ef3bb76508c24a378a56 /Rakefile
parenta8a450d6371835c596a94eee522edea8b70863d5 (diff)
downloadchef-a4d98365c1d68d7a24fba62783538951d2bbd2e0.tar.gz
release 12.8.0 changelogmw/version-bump
Diffstat (limited to 'Rakefile')
-rw-r--r--Rakefile9
1 files changed, 9 insertions, 0 deletions
diff --git a/Rakefile b/Rakefile
index 5643c668dd..2fdd1a7e65 100644
--- a/Rakefile
+++ b/Rakefile
@@ -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