Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump version to 3.0.1 #111

Merged
merged 1 commit into from
Aug 24, 2016
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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