summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMiklós Fazekas <mfazekas@szemafor.com>2015-12-30 10:01:41 +0100
committerMiklós Fazekas <mfazekas@szemafor.com>2015-12-30 10:01:41 +0100
commite884efe99fefe66eaddbd17b42b16c8112c6b9c5 (patch)
tree66b2f6e3664f6e440869531b342719537ab70d27
parente4b782e416fb2ccf2a8c81fb59f5f1a5f0b275a2 (diff)
parentdbbcd964dcfed7c15ea3f0be9951ea834979a717 (diff)
downloadnet-ssh-e884efe99fefe66eaddbd17b42b16c8112c6b9c5.tar.gz
Merge pull request #299 from mfazekas/net-ssh-32preparev3.0.2
3.0.2 prepare
-rw-r--r--CHANGES.txt3
-rw-r--r--lib/net/ssh/version.rb2
-rw-r--r--net-ssh.gemspec8
-rw-r--r--test/integration/playbook.yml2
4 files changed, 9 insertions, 6 deletions
diff --git a/CHANGES.txt b/CHANGES.txt
index 0d861e1..e9821d9 100644
--- a/CHANGES.txt
+++ b/CHANGES.txt
@@ -1,3 +1,6 @@
+=== 3.0.2
+=== 3.0.2.rc1
+
* fixed rare WaitWritable error with proxy commands [Miklos Fazkas, Andre Meij]]
* if Net::SSH.start user is nil and config has no entry we default to Etc.getlogin
* Bugfix: CHANNEL_CLOSE was sent before draining ouput buffer #280 [Christopher F. Auston]
diff --git a/lib/net/ssh/version.rb b/lib/net/ssh/version.rb
index 0a2c7b3..4220250 100644
--- a/lib/net/ssh/version.rb
+++ b/lib/net/ssh/version.rb
@@ -55,7 +55,7 @@ module Net; module SSH
# The prerelease component of this version of the Net::SSH library
# nil allowed
- PRE = "rc1"
+ PRE = nil
# 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 490f1c6..cab977e 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 3.0.2.rc1 ruby lib
+# stub: net-ssh 3.0.2 ruby lib
Gem::Specification.new do |s|
s.name = "net-ssh"
- s.version = "3.0.2.rc1"
+ s.version = "3.0.2"
- s.required_rubygems_version = Gem::Requirement.new("> 1.3.1") if s.respond_to? :required_rubygems_version=
+ 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", "Mikl\u{f3}s Fazekas"]
s.cert_chain = ["net-ssh-public_cert.pem"]
- s.date = "2015-12-10"
+ s.date = "2015-12-30"
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 = [
diff --git a/test/integration/playbook.yml b/test/integration/playbook.yml
index 030023d..399d231 100644
--- a/test/integration/playbook.yml
+++ b/test/integration/playbook.yml
@@ -14,7 +14,7 @@
roles:
- { role: rvm_io.rvm1-ruby,
tags: ruby, sudo: True,
- rvm1_rubies: ["ruby-{{ruby_version}}"],
+ rvm1_rubies: ["ruby-{{ruby_version}}","ruby-2.3.0"],
rvm1_install_path: "{{rvm1_install_path}}",
rvm1_gpg_key_server: pool.sks-keyservers.net,
when: "'{{current_ruby_version.stdout|default()}}' != '{{ruby_version}}'" }