Skip to content

Commit 3082270

Browse files
committed
Upgrade travis prepare 3.0 release
1 parent 3618219 commit 3082270

File tree

3 files changed

+13
-13
lines changed

3 files changed

+13
-13
lines changed

.travis.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
language: ruby
22
sudo: false
33
rvm:
4-
- 2.0.0
5-
- 2.1.0
6-
- 2.2.0
7-
- 2.3.0
8-
- 2.4.0
4+
- 2.2.10
5+
- 2.3.7
6+
- 2.4.5
7+
- 2.5.3
8+
- 2.6.0-rc2
99
- ruby-head
1010
- jruby-head
11-
- rbx-2
11+
- rbx-3.107
1212

1313
install: gem install net-ssh test-unit mocha
1414

lib/net/sftp/version.rb

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -46,17 +46,17 @@ def to_i
4646
end
4747

4848
# The major component of this version of the Net::SFTP library
49-
MAJOR = 2
49+
MAJOR = 3
5050

5151
# The minor component of this version of the Net::SFTP library
52-
MINOR = 1
52+
MINOR = 0
5353

5454
# The tiny component of this version of the Net::SFTP library
55-
TINY = 3
55+
TINY = 0
5656

5757
# The prerelease component of this version of the Net::SFTP library
5858
# nil allowed
59-
PRE = "rc3"
59+
PRE = "beta1"
6060

6161
# The current version of the Net::SFTP library as a Version instance
6262
CURRENT = new(*[MAJOR, MINOR, TINY, PRE].compact)

net-sftp.gemspec

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,16 +31,16 @@ Gem::Specification.new do |spec|
3131
spec.specification_version = 3
3232

3333
if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
34-
spec.add_runtime_dependency(%q<net-ssh>, [">= 2.6.5", "< 6.0.0"])
34+
spec.add_runtime_dependency(%q<net-ssh>, [">= 5.0.0", "< 6.0.0"])
3535
spec.add_development_dependency(%q<test-unit>, [">= 0"])
3636
spec.add_development_dependency(%q<mocha>, [">= 0"])
3737
else
38-
spec.add_dependency(%q<net-ssh>, [">= 2.6.5", "< 6.0.0"])
38+
spec.add_dependency(%q<net-ssh>, [">= 5.0.0", "< 6.0.0"])
3939
spec.add_dependency(%q<test-unit>, [">= 0"])
4040
spec.add_dependency(%q<mocha>, [">= 0"])
4141
end
4242
else
43-
spec.add_dependency(%q<net-ssh>, [">= 2.6.5", "< 6.0.0"])
43+
spec.add_dependency(%q<net-ssh>, [">= 5.0.0", "< 6.0.0"])
4444
spec.add_dependency(%q<test-unit>, [">= 0"])
4545
spec.add_dependency(%q<mocha>, [">= 0"])
4646
end

0 commit comments

Comments
 (0)