mirror of
https://github.com/capistrano/capistrano
synced 2023-03-27 23:21:18 -04:00
version bump, add some known issues to the README
git-svn-id: http://svn.rubyonrails.org/rails/tools/capistrano@7206 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
This commit is contained in:
parent
8ded34497b
commit
8ece869e60
2 changed files with 8 additions and 3 deletions
5
README
5
README
|
@ -36,3 +36,8 @@ Use the +cap+ script as follows:
|
|||
cap sometask
|
||||
|
||||
By default, the script will look for a file called one of +capfile+ or +Capfile+. The +someaction+ text indicates which task to execute. You can do "cap -h" to see all the available options and "cap -T" to see all the available tasks.
|
||||
|
||||
== KNOWN ISSUES
|
||||
|
||||
* Using "put" to upload a file to two or more hosts when a gateway is in effect has a good chance of crashing with a "corrupt mac detected" error. This is due to a bug in Net::SSH.
|
||||
* Running commands may rarely hang inexplicably. This appears to be specific only to certain platforms. Most people will never see this behavior.
|
|
@ -10,9 +10,9 @@ module Capistrano
|
|||
return actual >= required
|
||||
end
|
||||
|
||||
MAJOR = 1
|
||||
MINOR = 99
|
||||
TINY = 3
|
||||
MAJOR = 2
|
||||
MINOR = 0
|
||||
TINY = 0
|
||||
|
||||
STRING = [MAJOR, MINOR, TINY].join(".")
|
||||
|
||||
|
|
Loading…
Reference in a new issue