summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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 18b5989..38a3608 100644
--- a/CHANGELOG.rdoc
+++ b/CHANGELOG.rdoc
@@ -1,4 +1,9 @@
+=== 2.0.17 / 14 Dec 2009
+
+* Don't load net/ssh/authentication/pageant on Windows with Ruby 1.9 [Travis Reeder, Delano Mandelbaum]
+
+
=== 2.0.16 / 28 Nov 2009
* Fix for "multiple hosts are separated by whitespace" [Akinori MUSHA]
diff --git a/lib/net/ssh/version.rb b/lib/net/ssh/version.rb
index 048c71c..bdd75cd 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 = 16
+ TINY = 17
# 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 f627667..ecf98da 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.16"
+ s.version = "2.0.17"
s.summary = "Net::SSH: a pure-Ruby implementation of the SSH2 client protocol."
s.description = s.summary
s.authors = ["Jamis Buck", "Delano Mandelbaum"]