diff options
author | delano <delano@solutious.com> | 2011-08-17 21:20:48 -0400 |
---|---|---|
committer | delano <delano@solutious.com> | 2011-08-17 21:20:48 -0400 |
commit | 5f9d75cf3f4fd7883f37d60d469c984a4c9d4f2c (patch) | |
tree | 521c204e51e3a048a924fc9827d9789f6373bd65 | |
parent | 6cb111cb606ff237d4fe8c3b5237550bc3459fdb (diff) | |
download | net-ssh-2.1.tar.gz |
-rw-r--r-- | CHANGELOG.rdoc | 4 | ||||
-rw-r--r-- | lib/net/ssh/version.rb | 4 | ||||
-rw-r--r-- | net-ssh.gemspec | 2 |
3 files changed, 7 insertions, 3 deletions
diff --git a/CHANGELOG.rdoc b/CHANGELOG.rdoc index f65c68b..4d81edf 100644 --- a/CHANGELOG.rdoc +++ b/CHANGELOG.rdoc @@ -1,4 +1,8 @@ +=== 2.2.0 / 16 Aug 2011 + +* Add support for forward a local UNIX domain socket to a remote TCP socket. [Mark Imbriaco] + === 2.1.4 / 3 Apr 2011 * Add ConnectionTimeout exception class. [Joel Watson] diff --git a/lib/net/ssh/version.rb b/lib/net/ssh/version.rb index 1ad7af1..aff358b 100644 --- a/lib/net/ssh/version.rb +++ b/lib/net/ssh/version.rb @@ -48,10 +48,10 @@ module Net; module SSH MAJOR = 2 # The minor component of this version of the Net::SSH library - MINOR = 1 + MINOR = 2 # The tiny component of this version of the Net::SSH library - TINY = 4 + TINY = 0 # 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 4df93ea..0747617 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.1.4" + s.version = "2.2.0" s.summary = "Net::SSH: a pure-Ruby implementation of the SSH2 client protocol." s.description = s.summary s.authors = ["Jamis Buck", "Delano Mandelbaum"] |