diff options
-rw-r--r-- | CHANGELOG.md | 16 | ||||
-rw-r--r-- | Gemfile | 1 | ||||
-rw-r--r-- | Rakefile | 10 | ||||
-rw-r--r-- | chef-zero.gemspec | 1 | ||||
-rw-r--r-- | lib/chef_zero/version.rb | 2 |
5 files changed, 24 insertions, 6 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index 438f13a..f641b1f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,15 +1,19 @@ # Change Log -## [4.3.1](https://github.com/chef/chef-zero/tree/v4.3.1) (2015-09-29) +## [v4.3.1](https://github.com/chef/chef-zero/tree/v4.3.1) (2015-09-30) +[Full Changelog](https://github.com/chef/chef-zero/compare/v4.3.0...v4.3.1) -- Don't return invalid admin="true" for clients [\#166](https://github.com/chef/chef-zero/pull/155) ([jkeiser](https://github.com/jkeiser]) +**Fixed bugs:** -## [4.3.0](https://github.com/chef/chef-zero/tree/v4.3.0) (2015-09-02) +- chefspec client creation test broken by \#117 [\#165](https://github.com/chef/chef-zero/issues/165) +- Translate admin="true" to admin=true [\#166](https://github.com/chef/chef-zero/pull/166) ([jkeiser](https://github.com/jkeiser)) +## [v4.3.0](https://github.com/chef/chef-zero/tree/v4.3.0) (2015-09-02) [Full Changelog](https://github.com/chef/chef-zero/compare/v4.2.3...v4.3.0) **Implemented enhancements:** +- Allow Hashie to float to 3.x \(no need to be so specific\) [\#164](https://github.com/chef/chef-zero/pull/164) ([jkeiser](https://github.com/jkeiser)) - Server api version [\#155](https://github.com/chef/chef-zero/pull/155) ([andrewjamesbrown](https://github.com/andrewjamesbrown)) - Add /organizations/NAME/nodes/NAME/\_identifiers endpoint [\#152](https://github.com/chef/chef-zero/pull/152) ([andrewjamesbrown](https://github.com/andrewjamesbrown)) - CS12 Support [\#117](https://github.com/chef/chef-zero/pull/117) ([marcparadise](https://github.com/marcparadise)) @@ -21,6 +25,10 @@ - Update gem dependencies [\#146](https://github.com/chef/chef-zero/pull/146) ([andrewjamesbrown](https://github.com/andrewjamesbrown)) - Remove dependency on chef [\#140](https://github.com/chef/chef-zero/pull/140) ([terceiro](https://github.com/terceiro)) +**Merged pull requests:** + +- Autogenerated changelog [\#163](https://github.com/chef/chef-zero/pull/163) ([jkeiser](https://github.com/jkeiser)) + ## [v4.2.3](https://github.com/chef/chef-zero/tree/v4.2.3) (2015-06-19) [Full Changelog](https://github.com/chef/chef-zero/compare/v4.2.2...v4.2.3) @@ -461,4 +469,4 @@ ## [v0.9](https://github.com/chef/chef-zero/tree/v0.9) (2012-12-24) -\* *This Change Log was automatically generated by [github_changelog_generator](https://github.com/skywinder/Github-Changelog-Generator)* +\* *This Change Log was automatically generated by [github_changelog_generator](https://github.com/skywinder/Github-Changelog-Generator)*
\ No newline at end of file @@ -6,4 +6,3 @@ gem 'rest-client', :github => 'chef/rest-client' gem 'oc-chef-pedant', :github => 'chef/chef-server', branch: 'e9bf7fe4440afd34856401831b30636100be958b' gem 'chef', :github => 'chef/chef', :tag => '12.4.1' - @@ -29,3 +29,13 @@ task :berkshelf_spec do gem_path = Bundler.environment.specs['berkshelf'].first.full_gem_path system("cd #{gem_path} && thor spec:ci") end + +require 'github_changelog_generator/task' + +GitHubChangelogGenerator::RakeTask.new :changelog do |config| + config.token = ENV['GITHUB_CHANGELOG_TOKEN'] + # 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 diff --git a/chef-zero.gemspec b/chef-zero.gemspec index 8363ab2..8daf2d9 100644 --- a/chef-zero.gemspec +++ b/chef-zero.gemspec @@ -20,6 +20,7 @@ Gem::Specification.new do |s| s.add_development_dependency 'rake' s.add_development_dependency 'rspec' + s.add_development_dependency 'github_changelog_generator' s.bindir = 'bin' s.executables = ['chef-zero'] diff --git a/lib/chef_zero/version.rb b/lib/chef_zero/version.rb index 4a1d426..963b82f 100644 --- a/lib/chef_zero/version.rb +++ b/lib/chef_zero/version.rb @@ -1,3 +1,3 @@ module ChefZero - VERSION = '4.3.1' + VERSION = '4.3.2' end |