summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordelano <delano@solutious.com>2010-01-16 12:01:58 -0500
committerdelano <delano@solutious.com>2010-01-16 12:01:58 -0500
commit6046da86aa01f529b8ffeeef6fc2464eb2c502a9 (patch)
treec5e50353db9aab57459e2ac9eeb73b03989e6461
parentb0dd0c8f25cc1f3626e08f1b1df8226e8a7aabd3 (diff)
downloadnet-ssh-6046da86aa01f529b8ffeeef6fc2464eb2c502a9.tar.gz
Release 2.0.19 (plus signs in sshconfig host)v2.0.19
-rw-r--r--CHANGELOG.rdoc4
-rw-r--r--lib/net/ssh/version.rb2
-rw-r--r--net-ssh.gemspec2
3 files changed, 5 insertions, 3 deletions
diff --git a/CHANGELOG.rdoc b/CHANGELOG.rdoc
index 1297842..35718be 100644
--- a/CHANGELOG.rdoc
+++ b/CHANGELOG.rdoc
@@ -1,4 +1,5 @@
-=== Unreleased
+
+=== 2.0.19 / 16 Jan 2010
* Support plus sign in sshconfig hostname [Jason Weathered]
@@ -7,6 +8,7 @@
* Fix related to #recv(1) to #readpartial change in 2.0.16 [Hans de Graaff, Delano Mandelbaum]
+
=== 2.0.17 / 14 Dec 2009
* Don't load net/ssh/authentication/pageant on Windows with Ruby 1.9 [Travis Reeder, Delano Mandelbaum]
diff --git a/lib/net/ssh/version.rb b/lib/net/ssh/version.rb
index 2a8e03e..105babf 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 = 18
+ TINY = 19
# 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 569dcd88..be5cbfd 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.18"
+ s.version = "2.0.19"
s.summary = "Net::SSH: a pure-Ruby implementation of the SSH2 client protocol."
s.description = s.summary
s.authors = ["Jamis Buck", "Delano Mandelbaum"]