diff options
author | Miklos Fazekas <mfazekas@szemafor.com> | 2016-01-30 12:00:06 +0100 |
---|---|---|
committer | Miklos Fazekas <mfazekas@szemafor.com> | 2016-01-30 12:00:06 +0100 |
commit | d32bd9749cb52f6e8321ffe4339431d06ae52e20 (patch) | |
tree | f0b1192424014ff0d56ec168d015608b4bb4c6a6 | |
parent | 8cf97fdcf910c36cb4d2fbccb3ca5ac4e3c2036d (diff) | |
download | net-ssh-2-9-release.tar.gz |
Prpare for 2.9.4 releasev2.9.42-9-release
-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 = [ |