summaryrefslogtreecommitdiff
path: root/Rakefile
diff options
context:
space:
mode:
authorJohn Keiser <john@johnkeiser.com>2016-03-02 14:56:15 -0800
committerJohn Keiser <john@johnkeiser.com>2016-03-02 15:03:22 -0800
commit8352f67de678a77fc02322e22bb9b1aa7620925c (patch)
tree75a56b938cd991147d3eb1466c6524cb95cdb0ea /Rakefile
parent63e1b75f7661cb0379aea636f2e1d15127133117 (diff)
downloadohai-8352f67de678a77fc02322e22bb9b1aa7620925c.tar.gz
Bump version to 8.11, add changelogsjk/version-bump
Diffstat (limited to 'Rakefile')
-rw-r--r--Rakefile9
1 files changed, 9 insertions, 0 deletions
diff --git a/Rakefile b/Rakefile
index 980e3135..94e71291 100644
--- a/Rakefile
+++ b/Rakefile
@@ -22,3 +22,12 @@ require "rubocop/rake_task"
RuboCop::RakeTask.new(:style) do |task|
task.options += ["--display-cop-names", "--no-color"]
end
+
+require "github_changelog_generator/task"
+
+GitHubChangelogGenerator::RakeTask.new :changelog do |config|
+ config.future_release = Ohai::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