diff options
author | John Keiser <john@johnkeiser.com> | 2016-03-02 14:56:15 -0800 |
---|---|---|
committer | John Keiser <john@johnkeiser.com> | 2016-03-02 15:03:22 -0800 |
commit | 8352f67de678a77fc02322e22bb9b1aa7620925c (patch) | |
tree | 75a56b938cd991147d3eb1466c6524cb95cdb0ea /Rakefile | |
parent | 63e1b75f7661cb0379aea636f2e1d15127133117 (diff) | |
download | ohai-8352f67de678a77fc02322e22bb9b1aa7620925c.tar.gz |
Bump version to 8.11, add changelogsjk/version-bump
Diffstat (limited to 'Rakefile')
-rw-r--r-- | Rakefile | 9 |
1 files changed, 9 insertions, 0 deletions
@@ -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 |