From 116f6dac2fdd621d3e9354a3064517f3cacd21ba Mon Sep 17 00:00:00 2001 From: Miklos Fazekas Date: Sat, 12 Mar 2016 12:09:45 +0100 Subject: 1.3.0rc1 prepare --- CHANGES.txt | 5 +++++ lib/net/ssh/multi/version.rb | 10 +++++++--- net-ssh-multi.gemspec | 12 +++++++----- 3 files changed, 19 insertions(+), 8 deletions(-) diff --git a/CHANGES.txt b/CHANGES.txt index 48d94ab..92be5cd 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -1,3 +1,8 @@ +=== 1.3.0.rc1 / 12 Mar 2016 + +* Make sure we wait no more than keeepalive in select [Eugene Kenny] +* Forward action [Yukihiko SAWANOBORI] +* Net-ssh 3.0 compatibility [Balasankar C] === 1.2.1 / 11 Apr 2015 diff --git a/lib/net/ssh/multi/version.rb b/lib/net/ssh/multi/version.rb index 9854f32..c2f085e 100644 --- a/lib/net/ssh/multi/version.rb +++ b/lib/net/ssh/multi/version.rb @@ -7,13 +7,17 @@ module Net; module SSH; module Multi MAJOR = 1 # The minor component of the library's version - MINOR = 2 + MINOR = 3 # The tiny component of the library's version - TINY = 1 + TINY = 0 + + # The prerelease component of this version of the Net::SSH library + # nil allowed + PRE = "rc1" # The library's version as a Version instance - CURRENT = new(MAJOR, MINOR, TINY) + CURRENT = new(*[MAJOR, MINOR, TINY, PRE].compact) # The library's version as a String instance STRING = CURRENT.to_s diff --git a/net-ssh-multi.gemspec b/net-ssh-multi.gemspec index 5b3bbe7..0555b12 100644 --- a/net-ssh-multi.gemspec +++ b/net-ssh-multi.gemspec @@ -2,15 +2,17 @@ # DO NOT EDIT THIS FILE DIRECTLY # Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec' # -*- encoding: utf-8 -*- +# stub: net-ssh-multi 1.2.1 ruby lib Gem::Specification.new do |s| s.name = "net-ssh-multi" s.version = "1.2.1" 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"] s.cert_chain = ["gem-public_cert.pem"] - s.date = "2015-04-11" + s.date = "2016-03-12" s.description = "Control multiple Net::SSH connections via a single interface." s.email = "net-ssh@solutious.com" s.extra_rdoc_files = [ @@ -18,6 +20,7 @@ Gem::Specification.new do |s| "README.rdoc" ] s.files = [ + ".travis.yml", "CHANGES.txt", "LICENSE.txt", "README.rdoc", @@ -45,17 +48,16 @@ Gem::Specification.new do |s| ] s.homepage = "https://github.com/net-ssh/net-scp" s.licenses = ["MIT"] - s.require_paths = ["lib"] s.rubyforge_project = "net-ssh-multi" - s.rubygems_version = "1.8.23" + s.rubygems_version = "2.4.6" s.signing_key = "/mnt/gem/gem-private_key.pem" s.summary = "Control multiple Net::SSH connections via a single interface." if s.respond_to? :specification_version then - s.specification_version = 3 + s.specification_version = 4 if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then - s.add_runtime_dependency(%q, [">= 2.6.5"]) + s.add_runtime_dependency(%q, [">= 2.9.2"]) s.add_runtime_dependency(%q, [">= 1.2.0"]) s.add_development_dependency(%q, [">= 0"]) s.add_development_dependency(%q, [">= 0"]) -- cgit v1.2.1