summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordelano <delano@solutious.com>2009-08-17 10:06:30 -0400
committerdelano <delano@solutious.com>2009-08-17 10:29:57 -0400
commit424a31582428aa0b76d598bcb7d04cdb216940ab (patch)
tree3246366e6b688e99a8b99e98d031ea7edca9312c
parentd5a6437256ae524bd7048f9225635d9fb9c6b264 (diff)
downloadnet-ssh-424a31582428aa0b76d598bcb7d04cdb216940ab.tar.gz
Release 2.0.13
-rw-r--r--CHANGELOG.rdoc4
-rw-r--r--Rakefile2
-rw-r--r--lib/net/ssh/version.rb2
-rw-r--r--net-ssh.gemspec4
4 files changed, 6 insertions, 6 deletions
diff --git a/CHANGELOG.rdoc b/CHANGELOG.rdoc
index 8b8007d..4175f6a 100644
--- a/CHANGELOG.rdoc
+++ b/CHANGELOG.rdoc
@@ -1,10 +1,10 @@
-=== 2.0.13 / ?? Aug 2009
+=== 2.0.13 / 17 Aug 2009
* Added fix for hanging in ServerVersion#negotiate! when using SOCKS5 proxy (GH-9) [Gerald Talton]
-* Added support for specifying a list of hosts in .ssh/config, with tests (GH-6) [Delano Mandelbaum]
+* Added support for specifying a list of hosts in .ssh/config, with tests (GH-6) [ckoehler, Delano Mandelbaum]
* Added tests for arcfour128/256/512 lengths, encryption, and decryption [Delano Mandelbaum]
diff --git a/Rakefile b/Rakefile
index e329055..478db12 100644
--- a/Rakefile
+++ b/Rakefile
@@ -50,7 +50,7 @@ end
if @spec.rubyforge_project
desc 'Publish website to rubyforge'
task 'publish:rdoc' => 'doc/index.html' do
- sh "scp -rp doc/* rubyforge.org:/var/www/gforge-projects/#{name}/"
+ sh "scp -rp doc/* rubyforge.org:/var/www/gforge-projects/#{name}/ssh/v2/api/"
end
desc 'Public release to rubyforge'
diff --git a/lib/net/ssh/version.rb b/lib/net/ssh/version.rb
index 1eba4a9..aaed64d 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 = 12
+ TINY = 13
# 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 0d5c976..7430b87 100644
--- a/net-ssh.gemspec
+++ b/net-ssh.gemspec
@@ -1,10 +1,10 @@
@spec = Gem::Specification.new do |s|
s.name = "net-ssh"
s.rubyforge_project = 'net-ssh'
- s.version = "2.0.12"
+ s.version = "2.0.13"
s.summary = "Net::SSH: a pure-Ruby implementation of the SSH2 client protocol."
s.description = s.summary
- s.author = "Jamis Buck"
+ s.authors = ["Jamis Buck", "Delano Mandelbaum"]
s.email = "net-ssh@solutious.com"
s.homepage = "http://rubyforge.org/projects/net-ssh/"