diff options
-rw-r--r-- | lib/net/ssh/version.rb | 4 | ||||
-rw-r--r-- | net-ssh.gemspec | 8 |
2 files changed, 6 insertions, 6 deletions
diff --git a/lib/net/ssh/version.rb b/lib/net/ssh/version.rb index 57290b8..3af5023 100644 --- a/lib/net/ssh/version.rb +++ b/lib/net/ssh/version.rb @@ -53,9 +53,9 @@ module Net; module SSH # The tiny component of this version of the Net::SSH library TINY = 4 - # The prerelease component of this version of the Net::SSH library + # The prerelease component of this version of the Net::SSH library # nil allowed - PRE = "rc1" + PRE = nil # The current version of the Net::SSH library as a Version instance CURRENT = new(*[MAJOR, MINOR, TINY, PRE].compact) diff --git a/net-ssh.gemspec b/net-ssh.gemspec index 915a2a3..31b45d5 100644 --- a/net-ssh.gemspec +++ b/net-ssh.gemspec @@ -2,17 +2,17 @@ # DO NOT EDIT THIS FILE DIRECTLY # Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec' # -*- encoding: utf-8 -*- -# stub: net-ssh 2.9.4.rc1 ruby lib +# stub: net-ssh 2.9.4 ruby lib Gem::Specification.new do |s| s.name = "net-ssh" - s.version = "2.9.4.rc1" + s.version = "2.9.4" - s.required_rubygems_version = Gem::Requirement.new("> 1.3.1") if s.respond_to? :required_rubygems_version= + s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version= s.require_paths = ["lib"] s.authors = ["Jamis Buck", "Delano Mandelbaum", "Mikl\u{f3}s Fazekas"] s.cert_chain = ["net-ssh-public_cert.pem"] - s.date = "2015-12-10" + s.date = "2016-01-30" 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 = [ |