summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn Keiser <john@johnkeiser.com>2016-08-23 15:11:23 -0700
committerJohn Keiser <john@johnkeiser.com>2016-08-24 11:06:21 -0700
commita9a90cba3e04abc9d5c236b4711c44f851cdf39b (patch)
treefdccb96d72c2330eb3e722f66fcda431913d030c
parente135cd4894444cdeb991880598ea3c4e50548f89 (diff)
downloadchef-zero-a9a90cba3e04abc9d5c236b4711c44f851cdf39b.tar.gz
Bump version to 5.0
-rw-r--r--CHANGELOG.md12
-rw-r--r--Gemfile2
-rw-r--r--chef-zero.gemspec3
-rw-r--r--lib/chef_zero/version.rb2
4 files changed, 13 insertions, 6 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 4f0bbee..adf582b 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,7 +1,15 @@
# Change Log
-## [4.9.0](https://github.com/chef/chef-zero/tree/4.9.0) (2016-08-11)
-[Full Changelog](https://github.com/chef/chef-zero/compare/v4.8.0...4.9.0)
+## [5.0.0](https://github.com/chef/chef-zero/tree/5.0.0) (2016-08-24)
+[Full Changelog](https://github.com/chef/chef-zero/compare/v4.9.0...5.0.0)
+
+**Implemented enhancements:**
+
+- Support clients and users fields in ACL PUT requests [\#239](https://github.com/chef/chef-zero/pull/239) ([marcparadise](https://github.com/marcparadise))
+- Remove support for Ruby 2.1 [\#237](https://github.com/chef/chef-zero/pull/237) ([jkeiser](https://github.com/jkeiser))
+
+## [v4.9.0](https://github.com/chef/chef-zero/tree/v4.9.0) (2016-08-11)
+[Full Changelog](https://github.com/chef/chef-zero/compare/v4.8.0...v4.9.0)
**Fixed bugs:**
diff --git a/Gemfile b/Gemfile
index ac72665..202edcc 100644
--- a/Gemfile
+++ b/Gemfile
@@ -16,7 +16,7 @@ end
# bundler resolve failure on "rspec_junit_formatter"
# gem 'chef-pedant', :github => 'opscode/chef-pedant', :ref => "server-cli-option"
-# gem 'chef', :github => 'chef/chef', :branch => 'jk/policies-acls'
+gem "chef", github: "chef/chef", branch: "jk/update" # until update is merged to master
if ENV["GEMFILE_MOD"]
puts "GEMFILE_MOD: #{ENV['GEMFILE_MOD']}"
diff --git a/chef-zero.gemspec b/chef-zero.gemspec
index fcdb8e9..2a59f30 100644
--- a/chef-zero.gemspec
+++ b/chef-zero.gemspec
@@ -12,7 +12,7 @@ Gem::Specification.new do |s|
s.homepage = "http://www.chef.io"
s.license = "Apache 2.0"
- s.required_ruby_version = ">= 2.2.0"
+ s.required_ruby_version = ">= 2.2.2"
s.add_dependency "mixlib-log", "~> 1.3"
s.add_dependency "hashie", ">= 2.0", "< 4.0"
@@ -25,7 +25,6 @@ Gem::Specification.new do |s|
s.add_development_dependency "pry-stack_explorer"
s.add_development_dependency "rake"
s.add_development_dependency "rspec"
- s.add_development_dependency "chef"
s.bindir = "bin"
s.executables = ["chef-zero"]
diff --git a/lib/chef_zero/version.rb b/lib/chef_zero/version.rb
index f91c989..d66a928 100644
--- a/lib/chef_zero/version.rb
+++ b/lib/chef_zero/version.rb
@@ -1,3 +1,3 @@
module ChefZero
- VERSION = "4.9.1"
+ VERSION = "5.0.0"
end