public
Description: Pure Ruby implementation of an SSH (protocol 2) client
Homepage: http://rubyforge.org/projects/net-ssh
Clone URL: git://github.com/jamis/net-ssh.git
prepping for 2.0 release
jamis (author)
Thu May 01 21:05:16 -0700 2008
commit  dd1574a04e7c1088a06dae2d1676f4f5ff1aeaef
tree    55d91252a4b8afee3cb6ee5aae6e5b3429972b08
parent  d59b647b8ea08bc02f6dc8ac6f550c1849f369aa
...
1
 
2
3
4
...
 
1
2
3
4
0
@@ -1,4 +1,4 @@
0
-=== *unreleased*
0
+=== 2.0.0 / 1 May 2008
0
 
0
 * Allow the :verbose argument to accept symbols (:debug, etc.) as well as Logger level constants (Logger::DEBUG, etc.) [Jamis Buck]
0
 
...
43
44
45
46
 
47
48
49
 
50
51
52
 
53
54
55
...
43
44
45
 
46
47
48
 
49
50
51
 
52
53
54
55
0
@@ -43,13 +43,13 @@ module Net; module SSH
0
     end
0
 
0
     # The major component of this version of the Net::SSH library
0
- MAJOR = 1
0
+ MAJOR = 2
0
 
0
     # The minor component of this version of the Net::SSH library
0
- MINOR = 99
0
+ MINOR = 0
0
 
0
     # The tiny component of this version of the Net::SSH library
0
- TINY = 3
0
+ TINY = 0
0
 
0
     # The current version of the Net::SSH library as a Version instance
0
     CURRENT = new(MAJOR, MINOR, TINY)

Comments

    No one has commented yet.