Skip to content

Commit

Permalink
Add github_changelog_generator
Browse files Browse the repository at this point in the history
  • Loading branch information
jkeiser committed Jan 29, 2016
1 parent 3944956 commit d6effa3
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 2 deletions.
13 changes: 11 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,15 @@
# Change Log

## [2.0.0](https://github.com/chef/cheffish/tree/2.0.0) (2016-01-28)
[Full Changelog](https://github.com/chef/cheffish/compare/v1.6.0...2.0.0)
## [Unreleased](https://github.com/chef/cheffish/tree/HEAD)

[Full Changelog](https://github.com/chef/cheffish/compare/v2.0.0...HEAD)

**Merged pull requests:**

- Make NodeProperties work with chef-provisioning [\#97](https://github.com/chef/cheffish/pull/97) ([jkeiser](https://github.com/jkeiser))

## [v2.0.0](https://github.com/chef/cheffish/tree/v2.0.0) (2016-01-28)
[Full Changelog](https://github.com/chef/cheffish/compare/v1.6.0...v2.0.0)

**Fixed bugs:**

Expand All @@ -13,6 +21,7 @@

**Merged pull requests:**

- Prep for release 2.0.0 [\#96](https://github.com/chef/cheffish/pull/96) ([chefsalim](https://github.com/chefsalim))
- Move provider code into resources [\#93](https://github.com/chef/cheffish/pull/93) ([jkeiser](https://github.com/jkeiser))
- Support arbitrarily named private keys [\#87](https://github.com/chef/cheffish/pull/87) ([hfinucane](https://github.com/hfinucane))
- Convert to basic 12.5 resources [\#82](https://github.com/chef/cheffish/pull/82) ([jkeiser](https://github.com/jkeiser))
Expand Down
9 changes: 9 additions & 0 deletions Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -21,3 +21,12 @@ RDoc::Task.new do |rdoc|
rdoc.rdoc_files.include('README*')
rdoc.rdoc_files.include('lib/**/*.rb')
end

require 'github_changelog_generator/task'

GitHubChangelogGenerator::RakeTask.new :changelog do |config|
# config.future_release = ChefZero::VERSION
config.enhancement_labels = "enhancement,Enhancement,New Feature".split(',')
config.bug_labels = "bug,Bug,Improvement,Upstream Bug".split(',')
config.exclude_labels = "duplicate,question,invalid,wontfix,no_changelog".split(',')
end
1 change: 1 addition & 0 deletions cheffish.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ Gem::Specification.new do |s|
s.add_development_dependency 'chef', '~> 12.2'
s.add_development_dependency 'rake'
s.add_development_dependency 'rspec', '~> 3.0'
s.add_development_dependency 'github_changelog_generator'
s.bindir = "bin"
s.executables = %w( )

Expand Down

0 comments on commit d6effa3

Please sign in to comment.