summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordelano <delano@solutious.com>2012-05-24 07:55:11 -0400
committerdelano <delano@solutious.com>2012-05-24 07:55:11 -0400
commitc89fb8d6a2c33452004d5e386eb17f343f61f17a (patch)
treec659b5602cb667b005a5e2c53342f2b0c28b60ae
parent17709188e36e701d6f44dd74b61d6b294148956b (diff)
downloadnet-ssh-c89fb8d6a2c33452004d5e386eb17f343f61f17a.tar.gz
Release 2.5.0v2.5.0
-rw-r--r--CHANGELOG.rdoc21
-rw-r--r--lib/net/ssh/version.rb2
-rw-r--r--net-ssh.gemspec2
3 files changed, 23 insertions, 2 deletions
diff --git a/CHANGELOG.rdoc b/CHANGELOG.rdoc
index fe84bcc..e78438e 100644
--- a/CHANGELOG.rdoc
+++ b/CHANGELOG.rdoc
@@ -1,4 +1,25 @@
+=== 2.5.0 / 24 May 2012
+
+* Implement many algorithms [Ryosuke Yamazaki]
+ * Key Exchange
+ * diffie-hellman-group14-sha1
+ * ecdh-sha2-nistp{256,384,521}
+ * Host Key
+ * ecdsa-sha2-nistp{256,384,521}
+ * Authentication
+ * ecdsa-sha2-nistp{256,384,521}
+ * HMAC
+ * hmac-ripemd160
+ * Cipher:
+ * aes{128,192,256}-ctr
+ * camellia{128,192,256}-ctr
+ * blowfish-ctr
+ * cast128-ctr
+ * 3des-ctr
+ * arcfour (has problems with weak keys, and should be used with caution)
+ * camellia{128,192,256}-cbc
+
=== 2.4.0 / 17 May 2012
* Support for JRuby + Pageant + Windows [arturaz]
diff --git a/lib/net/ssh/version.rb b/lib/net/ssh/version.rb
index ba28fc7..a9d45de 100644
--- a/lib/net/ssh/version.rb
+++ b/lib/net/ssh/version.rb
@@ -48,7 +48,7 @@ module Net; module SSH
MAJOR = 2
# The minor component of this version of the Net::SSH library
- MINOR = 4
+ MINOR = 5
# The tiny component of this version of the Net::SSH library
TINY = 0
diff --git a/net-ssh.gemspec b/net-ssh.gemspec
index f6ea9e7..72f25ce 100644
--- a/net-ssh.gemspec
+++ b/net-ssh.gemspec
@@ -1,7 +1,7 @@
@spec = Gem::Specification.new do |s|
s.name = "net-ssh"
s.rubyforge_project = 'net-ssh'
- s.version = "2.4.0"
+ s.version = "2.5.0"
s.summary = "Net::SSH: a pure-Ruby implementation of the SSH2 client protocol."
s.description = s.summary + " It allows you to write programs that invoke and interact with processes on remote servers, via SSH2."
s.authors = ["Jamis Buck", "Delano Mandelbaum"]