Skip to content

Commit

Permalink
Merge pull request #111 from chef/jk/bump
Browse files Browse the repository at this point in the history
Bump version to 3.0.1
  • Loading branch information
jkeiser authored Aug 24, 2016
2 parents 14ce743 + 3fe7b04 commit 2b34e31
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 8 deletions.
11 changes: 7 additions & 4 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Change Log

## [3.0.1](https://github.com/chef/cheffish/tree/3.0.1) (2016-08-24)
[Full Changelog](https://github.com/chef/cheffish/compare/v3.0.0...3.0.1)

**Fixed bugs:**

- Fix JSON rendering for arrays [\#110](https://github.com/chef/cheffish/pull/110) ([jkeiser](https://github.com/jkeiser))

## [v3.0.0](https://github.com/chef/cheffish/tree/v3.0.0) (2016-08-11)
[Full Changelog](https://github.com/chef/cheffish/compare/v2.0.5...v3.0.0)

Expand All @@ -10,10 +17,6 @@
## [v2.0.5](https://github.com/chef/cheffish/tree/v2.0.5) (2016-08-03)
[Full Changelog](https://github.com/chef/cheffish/compare/v2.0.4...v2.0.5)

**Closed issues:**

- Chef acl updates permissions when it doesn't need to [\#92](https://github.com/chef/cheffish/issues/92)

**Merged pull requests:**

- Cleaning up some provisioning warnings [\#107](https://github.com/chef/cheffish/pull/107) ([tyler-ball](https://github.com/tyler-ball))
Expand Down
6 changes: 3 additions & 3 deletions Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,9 @@ begin
GitHubChangelogGenerator::RakeTask.new :changelog do |config|
require "cheffish/version"
config.future_release = Cheffish::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(',')
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
rescue LoadError
end
2 changes: 1 addition & 1 deletion lib/cheffish/version.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module Cheffish
VERSION = '3.0.0'
VERSION = '3.0.1'
end

0 comments on commit 2b34e31

Please sign in to comment.