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:
parent
9203764daa
commit
60ed6a32f0
2 changed files with 2 additions and 1 deletions
|
@ -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)
|
||||
|
|
|
@ -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'
|
||||
|
||||
|
|
Loading…
Reference in a new issue