diff options
author | delano <delano@solutious.com> | 2012-05-24 09:16:17 -0400 |
---|---|---|
committer | delano <delano@solutious.com> | 2012-05-24 09:16:37 -0400 |
commit | 46f5a2b6577d32649c8878194049f6405b97267d (patch) | |
tree | 4ec6e2243a2ddc1f54851632f0b3c8141775539a | |
parent | b810e62aa81fcf735294bf69de1e72786e891332 (diff) | |
download | net-ssh-2.4.tar.gz |
-rw-r--r-- | CHANGELOG.rdoc | 4 | ||||
-rw-r--r-- | lib/net/ssh/version.rb | 2 | ||||
-rw-r--r-- | net-ssh.gemspec | 2 |
3 files changed, 6 insertions, 2 deletions
diff --git a/CHANGELOG.rdoc b/CHANGELOG.rdoc index e78438e..15ae6f9 100644 --- a/CHANGELOG.rdoc +++ b/CHANGELOG.rdoc @@ -1,4 +1,8 @@ +=== 2.5.1 / 24 May 2012 + +* Added missing file to manifest [Marco Sandrini] + === 2.5.0 / 24 May 2012 * Implement many algorithms [Ryosuke Yamazaki] diff --git a/lib/net/ssh/version.rb b/lib/net/ssh/version.rb index a9d45de..f28010c 100644 --- a/lib/net/ssh/version.rb +++ b/lib/net/ssh/version.rb @@ -51,7 +51,7 @@ module Net; module SSH MINOR = 5 # The tiny component of this version of the Net::SSH library - TINY = 0 + TINY = 1 # 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 34c693b..fb1fb5a 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.5.0" + s.version = "2.5.1" s.summary = "Net::SSH: a pure-Ruby implementation of the SSH2 client protocol." s.description = s.summary + " It allows you to write programs that invoke and interact with processes on remote servers, via SSH2." s.authors = ["Jamis Buck", "Delano Mandelbaum"] |