summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMiklós Fazekas <mfazekas@szemafor.com>2017-07-19 09:04:18 +0200
committerGitHub <noreply@github.com>2017-07-19 09:04:18 +0200
commitbd4d31a66bba368cade1c9769996a9bd3a22f155 (patch)
treeef4032f3eaaba225008cfbb4084ad844085fb45f
parent978da67c7b49e8a8dc26808ad2608527abacb095 (diff)
parent25cd6f6276575dc0c0a013c3c2696d4bfab7b418 (diff)
downloadnet-ssh-bd4d31a66bba368cade1c9769996a9bd3a22f155.tar.gz
Merge pull request #539 from mfazekas/420rc2-preparev4.2.0.rc2
4.2.0.rc2 prepare
-rw-r--r--CHANGES.txt5
-rw-r--r--lib/net/ssh/version.rb2
2 files changed, 6 insertions, 1 deletions
diff --git a/CHANGES.txt b/CHANGES.txt
index 352b742..7deed90 100644
--- a/CHANGES.txt
+++ b/CHANGES.txt
@@ -1,5 +1,10 @@
+=== 4.2.0.rc2
+
+ * Fix double close bug on auth failure (or ruby 2.2 or earlier) [#538]
+
=== 4.2.0.rc1
+ * Improved logging with proxy command [Dmitriy Ivliev, #530]
* Close transport on proxy error [adamruzicka, #526]
* Support multiple identity files [Kimura Masayuki, #528]
* Move `none` cipher to end of cipher list [Brian Cain, #525]
diff --git a/lib/net/ssh/version.rb b/lib/net/ssh/version.rb
index 244295a..5f79900 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 = "rc2"
# The current version of the Net::SSH library as a Version instance
CURRENT = new(*[MAJOR, MINOR, TINY, PRE].compact)