summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMiklos Fazekas <mfazekas@szemafor.com>2015-01-27 10:43:37 +0100
committerMiklos Fazekas <mfazekas@szemafor.com>2015-01-27 10:46:03 +0100
commitefd1c06b807d6a97c080ff5d07b096fa7f1a5a62 (patch)
treebbc89dbef10fcca39e186a682ff6fb56b3705525
parent082d1ac9b883d68628390887c1240c45a71fb034 (diff)
downloadnet-ssh-efd1c06b807d6a97c080ff5d07b096fa7f1a5a62.tar.gz
2.9.3beta1 prepare
-rw-r--r--CHANGES.txt7
-rw-r--r--lib/net/ssh/version.rb4
-rw-r--r--net-ssh.gemspec8
3 files changed, 13 insertions, 6 deletions
diff --git a/CHANGES.txt b/CHANGES.txt
index 4c21761..17968de 100644
--- a/CHANGES.txt
+++ b/CHANGES.txt
@@ -1,3 +1,10 @@
+=== 2.9.4-beta1
+
+* Use sysread and syswrite on Windows instead of read_nonblock and write [marc-etienne]
+* Windows/peagant: use fiddle on ruby 2.2+/windows [Charlie Savage]
+* Check if ssh key is a file [kiela]
+
+=== 2.9.3
=== 2.9.2-rc3
* Remove advertised algorithms that were not working (curve25519-sha256@libssh.org) [mfazekas]
diff --git a/lib/net/ssh/version.rb b/lib/net/ssh/version.rb
index ddd6f38..908fb8a 100644
--- a/lib/net/ssh/version.rb
+++ b/lib/net/ssh/version.rb
@@ -51,11 +51,11 @@ module Net; module SSH
MINOR = 9
# The tiny component of this version of the Net::SSH library
- TINY = 2
+ TINY = 3
# The prerelease component of this version of the Net::SSH library
# nil allowed
- PRE = nil
+ PRE = 'beta1'
# 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 4fa859b..d620428 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.2 ruby lib
+# stub: net-ssh 2.9.3.beta1 ruby lib
Gem::Specification.new do |s|
s.name = "net-ssh"
- s.version = "2.9.2"
+ s.version = "2.9.3.beta1"
- s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
+ 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-01-09"
+ s.date = "2015-01-27"
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 = [