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

version bump, prepping for 2.3 release

This commit is contained in:
Jamis Buck 2008-05-02 14:47:55 -06:00
parent 838f6abd74
commit cf8826617c
3 changed files with 6 additions and 6 deletions

View file

@ -1,4 +1,4 @@
*unreleased* *2.3.0* May 2, 2008
* Make sure git fetches include tags [Alex Arnell] * Make sure git fetches include tags [Alex Arnell]

View file

@ -14,10 +14,10 @@ Gem::Specification.new do |s|
s.bindir = "bin" s.bindir = "bin"
s.executables << "cap" << "capify" s.executables << "cap" << "capify"
s.add_dependency 'net-ssh', ">= 1.99.2" s.add_dependency 'net-ssh', ">= 2.0.0"
s.add_dependency 'net-sftp', ">= 1.99.1" s.add_dependency 'net-sftp', ">= 2.0.0"
s.add_dependency 'net-scp', ">= 0.99.0" s.add_dependency 'net-scp', ">= 1.0.0"
s.add_dependency 'net-ssh-gateway', ">= 0.99.0" s.add_dependency 'net-ssh-gateway', ">= 1.0.0"
s.add_dependency 'highline' s.add_dependency 'highline'
s.author = "Jamis Buck" s.author = "Jamis Buck"

View file

@ -11,7 +11,7 @@ module Capistrano
end end
MAJOR = 2 MAJOR = 2
MINOR = 2 MINOR = 3
TINY = 0 TINY = 0
STRING = [MAJOR, MINOR, TINY].join(".") STRING = [MAJOR, MINOR, TINY].join(".")