summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordelano <delano@solutious.com>2009-11-28 15:22:02 -0500
committerdelano <delano@solutious.com>2009-11-28 15:22:02 -0500
commit40d53de3b503145ced338690ce4aaf1cc08e9aae (patch)
tree5716ee178a45271d520b87f25dd31833c2bcf2eb
parentbac04895137db2f64b8a57570baf33da3fff4d6f (diff)
downloadnet-ssh-2.0.16.tar.gz
Release 2.0.16v2.0.16
-rw-r--r--CHANGELOG.rdoc7
-rw-r--r--lib/net/ssh/version.rb2
-rw-r--r--net-ssh.gemspec4
3 files changed, 11 insertions, 2 deletions
diff --git a/CHANGELOG.rdoc b/CHANGELOG.rdoc
index 5b90578..d7a5a5a 100644
--- a/CHANGELOG.rdoc
+++ b/CHANGELOG.rdoc
@@ -1,4 +1,11 @@
+=== 2.0.16 / 28 Nov 2009
+
+* Fix for "multiple hosts are separated by whitespace" [Akinori MUSHA]
+* Add support for the ProxyCommand directive [Akinori MUSHA]
+* Do not put a command line twice in error messages [Akinori MUSHA]
+* Switched from #recv(1) to #readchar in lib/net/ssh/transport/server_version.rb, so that closed sockets are recognized [Alex Peuchert]
+
=== 2.0.15 / 03 Sep 2009
diff --git a/lib/net/ssh/version.rb b/lib/net/ssh/version.rb
index 263f36e..048c71c 100644
--- a/lib/net/ssh/version.rb
+++ b/lib/net/ssh/version.rb
@@ -51,7 +51,7 @@ module Net; module SSH
MINOR = 0
# The tiny component of this version of the Net::SSH library
- TINY = 15
+ TINY = 16
# The current version of the Net::SSH library as a Version instance
CURRENT = new(MAJOR, MINOR, TINY)
diff --git a/net-ssh.gemspec b/net-ssh.gemspec
index a7ac88a..f627667 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.0.15"
+ s.version = "2.0.16"
s.summary = "Net::SSH: a pure-Ruby implementation of the SSH2 client protocol."
s.description = s.summary
s.authors = ["Jamis Buck", "Delano Mandelbaum"]
@@ -48,6 +48,7 @@
lib/net/ssh/loggable.rb
lib/net/ssh/packet.rb
lib/net/ssh/prompt.rb
+ lib/net/ssh/proxy/command.rb
lib/net/ssh/proxy/errors.rb
lib/net/ssh/proxy/http.rb
lib/net/ssh/proxy/socks4.rb
@@ -89,6 +90,7 @@
net-ssh.gemspec
setup.rb
support/arcfour_check.rb
+ support/ssh_tunnel_bug.rb
test/authentication/methods/common.rb
test/authentication/methods/test_abstract.rb
test/authentication/methods/test_hostbased.rb