Skip to content

Commit

Permalink
Prep knife-windows v1.0.x
Browse files Browse the repository at this point in the history
Drops requirement on knife-windows, adds requirement on chef >= 15
Requires Ruby 2.5+

Signed-off-by: Bryan McLellan <[email protected]>
  • Loading branch information
btm committed May 17, 2019
1 parent afa4251 commit 9e534f2
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 9 deletions.
7 changes: 3 additions & 4 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,17 +4,16 @@ dist: xenial

matrix:
include:
- rvm: 2.3.8
- rvm: 2.4.5
- rvm: 2.5.3
- rvm: 2.6
- rvm: 2.5.5
- rvm: 2.6.3
- rvm: ruby-head
allow_failures:
- rvm: ruby-head

branches:
only:
- master
- 0-stable

bundler_args: --jobs 7 --without docs debug

Expand Down
4 changes: 2 additions & 2 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ group :debug do
end

group :test do
gem "chef", ">= 13.0"
gem "chefstyle", "= 0.10.0"
gem "chef", ">= 15.0"
gem "chefstyle"
gem "rake"
gem "rspec", "~> 3.0"
end
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.19.17
1.0.0
4 changes: 2 additions & 2 deletions knife-ec2.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,10 @@ Gem::Specification.new do |s|
s.license = "Apache-2.0"

s.files = %w{LICENSE} + Dir.glob("lib/**/*")
s.required_ruby_version = ">= 2.3"
s.required_ruby_version = ">= 2.5"

s.add_dependency "chef", ">= 15.0"
s.add_dependency "fog-aws", ">= 1", "< 4"
s.add_dependency "knife-windows", "~> 1.0"

s.require_paths = ["lib"]
end

0 comments on commit 9e534f2

Please sign in to comment.