summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMiklos Fazekas <mfazekas@szemafor.com>2016-03-30 12:16:27 +0200
committerMiklos Fazekas <mfazekas@szemafor.com>2016-03-30 12:16:27 +0200
commit076315d967bb7010eb05ca3d34801bf28e563d00 (patch)
treefc89f8e03976d63ff7b770e62737d2328901fc3f
parent0861d16b1b6e2023e7ee1c5bc2d110b0f126e67f (diff)
downloadnet-ssh-4.0.0.alpha3.tar.gz
Alpha 3 preparev4.0.0.alpha3
-rw-r--r--CHANGES.txt4
-rw-r--r--README.rdoc2
-rw-r--r--lib/net/ssh/version.rb2
3 files changed, 7 insertions, 1 deletions
diff --git a/CHANGES.txt b/CHANGES.txt
index 350a224..dd4bcbf 100644
--- a/CHANGES.txt
+++ b/CHANGES.txt
@@ -1,3 +1,7 @@
+=== 4.0.0.alpha3
+
+* added max_select_wait_time [Eugene Kenny]
+
=== 4.0.0.alpha2
* when transport closes we're cleaning up channels [Miklos Fazekas]
diff --git a/README.rdoc b/README.rdoc
index 27a1db7..eecb28b 100644
--- a/README.rdoc
+++ b/README.rdoc
@@ -88,6 +88,8 @@ Lastly, if you want to run the tests or use any of the Rake tasks, you'll need M
* gem install net-ssh (might need sudo privileges)
+NOTE: If you are running on jruby on windows you need to install jruby-pageant manually (gemspec doesn't allow for platform specific dependencies).
+
However, in order to be sure the code you're installing hasn't been tampered with, it's recommended that you verify the signature[http://docs.rubygems.org/read/chapter/21]. To do this, you need to add my public key as a trusted certificate (you only need to do this once):
# Add the public key as a trusted certificate
diff --git a/lib/net/ssh/version.rb b/lib/net/ssh/version.rb
index e4477f2..381706b 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 = "alpha2"
+ PRE = "alpha3"
# The current version of the Net::SSH library as a Version instance
CURRENT = new(*[MAJOR, MINOR, TINY, PRE].compact)