public
Description: Pure Ruby implementation of an SFTP (protocols 1-6) client
Homepage: http://rubyforge.org/projects/net-ssh
Clone URL: git://github.com/jamis/net-sftp.git
Search Repo:
prepping for the 2.0 release
jamis (author)
Thu May 01 21:08:18 -0700 2008
commit  8f1eb74d949280c9bb442380faba69523721c8ea
tree    05fd0e961668545c1de21ebe4344b93099de4af5
parent  31820b73fab270db19d2285217469f3bab1e5b94
...
1
 
2
3
4
...
 
1
2
3
4
0
@@ -1,4 +1,4 @@
0
-=== *unreleased*
0
+=== 2.0.0 / 1 May 2008
0
 
0
 * Make Net::SSH::Connection::Session#sftp accept an argument determining whether or not to block while the SFTP subsystem initializes (defaults to true) [Jamis Buck]
0
 
...
4
5
6
7
8
9
 
 
 
10
11
12
...
4
5
6
 
 
 
7
8
9
10
11
12
0
@@ -4,9 +4,9 @@
0
 
0
   # Describes the current version of the Net::SFTP library.
0
   class Version < Net::SSH::Version
0
- MAJOR = 1
0
- MINOR = 99
0
- TINY = 1
0
+ MAJOR = 2
0
+ MINOR = 0
0
+ TINY = 0
0
 
0
     # The current version, as a Version instance
0
     CURRENT = new(MAJOR, MINOR, TINY)

Comments

    No one has commented yet.