Skip to content

Commit

Permalink
Remove Ruby 2.0 support and bump to version 0.7
Browse files Browse the repository at this point in the history
Ruby 2.0 is far EoL and there's no need to support it as we use 2.1.X in omnibus.

Signed-off-by: Tim Smith <tsmith@chef.io>
  • Loading branch information
tas50 committed Aug 2, 2016
1 parent 7b2919f commit 77d191e
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 6 deletions.
5 changes: 2 additions & 3 deletions .travis.yml
@@ -1,9 +1,8 @@
sudo: false

rvm:
- 2.0
- 2.1
- 2.2
- 2.1.9
- 2.2.5
- 2.3.1

# Don't install local development gems on Travis, use parallel gem downloads
Expand Down
2 changes: 1 addition & 1 deletion Gemfile
Expand Up @@ -7,6 +7,6 @@ end

group :test do
gem 'chef-zero', '~> 2.0.0'
gem 'rake', '~> 10.3'
gem 'rake', '~> 11.0'
gem 'rspec', '~> 3.0'
end
2 changes: 1 addition & 1 deletion chef-api.gemspec
Expand Up @@ -13,7 +13,7 @@ Gem::Specification.new do |spec|
spec.homepage = 'https://github.com/sethvargo/chef-api'
spec.license = 'Apache 2.0'

spec.required_ruby_version = '>= 2.0'
spec.required_ruby_version = '>= 2.1'

spec.files = `git ls-files`.split($/)
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
Expand Down
2 changes: 1 addition & 1 deletion lib/chef-api/version.rb
@@ -1,3 +1,3 @@
module ChefAPI
VERSION = '0.6.0'
VERSION = '0.7.0'
end

0 comments on commit 77d191e

Please sign in to comment.