1
0
Fork 0
mirror of https://github.com/capistrano/capistrano synced 2023-03-27 23:21:18 -04:00

Require SSHKit >= 1.7.1

This commit is contained in:
Matt Brictson 2015-10-19 13:22:12 -07:00
parent 9203764daa
commit 60ed6a32f0
2 changed files with 2 additions and 1 deletions

View file

@ -11,6 +11,7 @@ https://github.com/capistrano/capistrano/compare/v3.4.0...HEAD
* Removed the post-install message (@Kriechi)
* Refactor `Configuration::Filter` to use filtering strategies instead
of case statements (@cshaffer)
* Old versions of SSHKit (before 1.7.1) are no longer supported
* Minor changes
* Fix filtering behaviour when using literal hostnames in on() block (@townsen)

View file

@ -20,7 +20,7 @@ Gem::Specification.new do |gem|
gem.licenses = ['MIT']
gem.required_ruby_version = '>= 1.9.3'
gem.add_dependency 'sshkit', '~> 1.3'
gem.add_dependency 'sshkit', '>= 1.7.1'
gem.add_dependency 'rake', '>= 10.0.0'
gem.add_dependency 'i18n'