diff options
author | delano <delano.mandelbaum@gmail.com> | 2013-03-03 10:42:04 -0800 |
---|---|---|
committer | delano <delano.mandelbaum@gmail.com> | 2013-03-03 10:42:04 -0800 |
commit | 4f2ae72397484dbf365ef1b4898076fc9ffbd90a (patch) | |
tree | 7fa74b69c9971ad2e3861367af28c98f8d7cd30f | |
parent | 46bfb67c509df6effdb0425bd40444449c6e572e (diff) | |
download | net-ssh-4f2ae72397484dbf365ef1b4898076fc9ffbd90a.tar.gz |
Version bumpv2.6.6
-rw-r--r-- | CHANGES.txt | 3 | ||||
-rw-r--r-- | lib/net/ssh/version.rb | 2 | ||||
-rw-r--r-- | net-ssh.gemspec | 4 |
3 files changed, 6 insertions, 3 deletions
diff --git a/CHANGES.txt b/CHANGES.txt index 4f01fab..eeecfa4 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -1,4 +1,7 @@ +=== 2.6.6 / 03 Mar 2013 + +* Fix for ruby 2.0 in windows [jansegre] === 2.6.5 / 06 Feb 2013 diff --git a/lib/net/ssh/version.rb b/lib/net/ssh/version.rb index 074dffd..c04f7e0 100644 --- a/lib/net/ssh/version.rb +++ b/lib/net/ssh/version.rb @@ -51,7 +51,7 @@ module Net; module SSH MINOR = 6 # The tiny component of this version of the Net::SSH library - TINY = 5 + TINY = 6 # 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 8ef047f..fad77dd 100644 --- a/net-ssh.gemspec +++ b/net-ssh.gemspec @@ -5,12 +5,12 @@ Gem::Specification.new do |s| s.name = "net-ssh" - s.version = "2.6.5" + s.version = "2.6.6" s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version= s.authors = ["Jamis Buck", "Delano Mandelbaum"] s.cert_chain = ["gem-public_cert.pem"] - s.date = "2013-02-06" + s.date = "2013-03-03" s.description = "Net::SSH: a pure-Ruby implementation of the SSH2 client protocol. It allows you to write programs that invoke and interact with processes on remote servers, via SSH2." s.email = "net-ssh@solutious.com" s.extra_rdoc_files = [ |