summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordelano <delano@solutious.com>2012-05-17 07:31:29 -0400
committerdelano <delano@solutious.com>2012-05-17 07:31:29 -0400
commit2840dae8c196a1c84e6dd515c8630d9b0ce6d088 (patch)
tree8fd3e3b6ca3bf75ea901d215ecf7e9a4ee178113
parentf10c563115ecf3a5dd00b6907d11a7220facd2e7 (diff)
downloadnet-ssh-add-many-algorithms.tar.gz
-rw-r--r--CHANGELOG.rdoc4
-rw-r--r--lib/net/ssh/version.rb2
-rw-r--r--net-ssh.gemspec2
3 files changed, 6 insertions, 2 deletions
diff --git a/CHANGELOG.rdoc b/CHANGELOG.rdoc
index 84bcc0f..fe84bcc 100644
--- a/CHANGELOG.rdoc
+++ b/CHANGELOG.rdoc
@@ -1,4 +1,8 @@
+=== 2.4.0 / 17 May 2012
+
+* Support for JRuby + Pageant + Windows [arturaz]
+
=== 2.3.0 / 11 Jan 2012
* Support for hmac-sha2 and diffie-hellman-group-exchange-sha256 [Ryosuke Yamazaki]
diff --git a/lib/net/ssh/version.rb b/lib/net/ssh/version.rb
index 3862b9a..ba28fc7 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 = 3
+ MINOR = 4
# The tiny component of this version of the Net::SSH library
TINY = 0
diff --git a/net-ssh.gemspec b/net-ssh.gemspec
index 1caecce..b6c4283 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.3.1"
+ s.version = "2.4.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"]