Skip to content

Commit 116f6da

Browse files
committed
1.3.0rc1 prepare
1 parent 3852c73 commit 116f6da

File tree

3 files changed

+19
-8
lines changed

3 files changed

+19
-8
lines changed

CHANGES.txt

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
=== 1.3.0.rc1 / 12 Mar 2016
2+
3+
* Make sure we wait no more than keeepalive in select [Eugene Kenny]
4+
* Forward action [Yukihiko SAWANOBORI]
5+
* Net-ssh 3.0 compatibility [Balasankar C]
16

27
=== 1.2.1 / 11 Apr 2015
38

lib/net/ssh/multi/version.rb

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,17 @@ class Version < Net::SSH::Version
77
MAJOR = 1
88

99
# The minor component of the library's version
10-
MINOR = 2
10+
MINOR = 3
1111

1212
# The tiny component of the library's version
13-
TINY = 1
13+
TINY = 0
14+
15+
# The prerelease component of this version of the Net::SSH library
16+
# nil allowed
17+
PRE = "rc1"
1418

1519
# The library's version as a Version instance
16-
CURRENT = new(MAJOR, MINOR, TINY)
20+
CURRENT = new(*[MAJOR, MINOR, TINY, PRE].compact)
1721

1822
# The library's version as a String instance
1923
STRING = CURRENT.to_s

net-ssh-multi.gemspec

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,22 +2,25 @@
22
# DO NOT EDIT THIS FILE DIRECTLY
33
# Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec'
44
# -*- encoding: utf-8 -*-
5+
# stub: net-ssh-multi 1.2.1 ruby lib
56

67
Gem::Specification.new do |s|
78
s.name = "net-ssh-multi"
89
s.version = "1.2.1"
910

1011
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
12+
s.require_paths = ["lib"]
1113
s.authors = ["Jamis Buck", "Delano Mandelbaum"]
1214
s.cert_chain = ["gem-public_cert.pem"]
13-
s.date = "2015-04-11"
15+
s.date = "2016-03-12"
1416
s.description = "Control multiple Net::SSH connections via a single interface."
1517
s.email = "[email protected]"
1618
s.extra_rdoc_files = [
1719
"LICENSE.txt",
1820
"README.rdoc"
1921
]
2022
s.files = [
23+
".travis.yml",
2124
"CHANGES.txt",
2225
"LICENSE.txt",
2326
"README.rdoc",
@@ -45,17 +48,16 @@ Gem::Specification.new do |s|
4548
]
4649
s.homepage = "https://github.com/net-ssh/net-scp"
4750
s.licenses = ["MIT"]
48-
s.require_paths = ["lib"]
4951
s.rubyforge_project = "net-ssh-multi"
50-
s.rubygems_version = "1.8.23"
52+
s.rubygems_version = "2.4.6"
5153
s.signing_key = "/mnt/gem/gem-private_key.pem"
5254
s.summary = "Control multiple Net::SSH connections via a single interface."
5355

5456
if s.respond_to? :specification_version then
55-
s.specification_version = 3
57+
s.specification_version = 4
5658

5759
if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
58-
s.add_runtime_dependency(%q<net-ssh>, [">= 2.6.5"])
60+
s.add_runtime_dependency(%q<net-ssh>, [">= 2.9.2"])
5961
s.add_runtime_dependency(%q<net-ssh-gateway>, [">= 1.2.0"])
6062
s.add_development_dependency(%q<minitest>, [">= 0"])
6163
s.add_development_dependency(%q<mocha>, [">= 0"])

0 commit comments

Comments
 (0)