summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordelano <delano@solutious.com>2012-01-04 18:59:13 -0500
committerdelano <delano@solutious.com>2012-01-04 18:59:13 -0500
commite0c9efa487121023b226eee5264c185965d10d90 (patch)
treea190382836dc62ac45610cafa9765d3bcf218489
parentf43443886917cad44e2831cf32fd5b3a29e2bafe (diff)
downloadnet-ssh-2.2.tar.gz
Version 2.2.2v2.2.22.2
-rw-r--r--CHANGELOG.rdoc5
-rw-r--r--lib/net/ssh/version.rb2
-rw-r--r--net-ssh.gemspec2
3 files changed, 7 insertions, 2 deletions
diff --git a/CHANGELOG.rdoc b/CHANGELOG.rdoc
index 060b44e..be4daef 100644
--- a/CHANGELOG.rdoc
+++ b/CHANGELOG.rdoc
@@ -1,4 +1,9 @@
+=== 2.2.2 / 04 Jan 2012
+
+* Fixed: Connection hangs on ServerVersion.new(socket, logger) [muffl0n]
+* Avoid dying when unsupported auth mechanisms are defined [pcn]
+
=== 2.2.1 / 24 Aug 2011
* Do not prompt any passphrases before trying all identities from agent. [musybite]
diff --git a/lib/net/ssh/version.rb b/lib/net/ssh/version.rb
index f61120b..3e26604 100644
--- a/lib/net/ssh/version.rb
+++ b/lib/net/ssh/version.rb
@@ -51,7 +51,7 @@ module Net; module SSH
MINOR = 2
# The tiny component of this version of the Net::SSH library
- TINY = 1
+ TINY = 2
# 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 5537221..c1900c1 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.2.1"
+ s.version = "2.2.2"
s.summary = "Net::SSH: a pure-Ruby implementation of the SSH2 client protocol."
s.description = s.summary
s.authors = ["Jamis Buck", "Delano Mandelbaum"]