Skip to content

Commit

Permalink
enable changelog generator
Browse files Browse the repository at this point in the history
Signed-off-by: Thom May <thom@may.lt>
  • Loading branch information
Thom May authored and thommay committed Aug 4, 2016
1 parent 51a8b70 commit ba932c2
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 0 deletions.
9 changes: 9 additions & 0 deletions Rakefile
Expand Up @@ -32,3 +32,12 @@ begin
rescue LoadError
puts "chefstyle/rubocop is not available. gem install chefstyle to do style checking."
end

require "github_changelog_generator/task"

GitHubChangelogGenerator::RakeTask.new :changelog do |config|
config.future_release = Mixlib::Log::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
1 change: 1 addition & 0 deletions mixlib-log.gemspec
Expand Up @@ -17,4 +17,5 @@ Gem::Specification.new do |gem|
gem.add_development_dependency "rspec", "~> 3.4"
gem.add_development_dependency "chefstyle", "~> 0.3"
gem.add_development_dependency "cucumber"
gem.add_development_dependency "github_changelog_generator", "1.11.3"
end

0 comments on commit ba932c2

Please sign in to comment.