summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--CHANGES.txt8
-rw-r--r--lib/net/ssh/version.rb8
-rw-r--r--net-ssh.gemspec6
3 files changed, 15 insertions, 7 deletions
diff --git a/CHANGES.txt b/CHANGES.txt
index 0be1288..059b168 100644
--- a/CHANGES.txt
+++ b/CHANGES.txt
@@ -1,3 +1,11 @@
+=== 3.0.0.rc1
+
+* SemVer: Major version change because of dropping of ruby 1.9
+
+=== 2.10.1.rc2
+
+* Win: Use fiddle on ruby 2.1 too [Charlie Savage]
+
=== 2.10.1.rc1
* Added ruby 2.0 requirement to gemspec [Alex Schultz]
diff --git a/lib/net/ssh/version.rb b/lib/net/ssh/version.rb
index e272a5d..ae7ea01 100644
--- a/lib/net/ssh/version.rb
+++ b/lib/net/ssh/version.rb
@@ -45,17 +45,17 @@ module Net; module SSH
end
# The major component of this version of the Net::SSH library
- MAJOR = 2
+ MAJOR = 3
# The minor component of this version of the Net::SSH library
- MINOR = 10
+ MINOR = 0
# The tiny component of this version of the Net::SSH library
- TINY = 1
+ TINY = 0
# The prerelease component of this version of the Net::SSH library
# nil allowed
- PRE = 'rc2'
+ PRE = 'rc1'
# 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 b3486b5..f954ac2 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.10.1.rc2 ruby lib
+# stub: net-ssh 3.0.0.rc1 ruby lib
Gem::Specification.new do |s|
s.name = "net-ssh"
- s.version = "2.10.1.rc2"
+ s.version = "3.0.0.rc1"
s.required_rubygems_version = Gem::Requirement.new("> 1.3.1") 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-09-08"
+ s.date = "2015-09-13"
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 = [