summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMiklós Fazekas <mfazekas@szemafor.com>2021-08-10 10:20:31 +0200
committerMiklós Fazekas <mfazekas@szemafor.com>2021-08-10 10:20:31 +0200
commita942083443d3ddaaa3d911c3d0edd51dbffadc38 (patch)
treec538e05f1379df02169ce6f2ad6d99d22d4ba16f
parent1310df3b5cbdb8f0bd5d6c883f376f1acb6711ed (diff)
downloadnet-ssh-a942083443d3ddaaa3d911c3d0edd51dbffadc38.tar.gz
6.3.0.beta1 release
-rw-r--r--CHANGES.txt1
-rw-r--r--lib/net/ssh/version.rb4
2 files changed, 3 insertions, 2 deletions
diff --git a/CHANGES.txt b/CHANGES.txt
index 8fb56bf..86c5bd1 100644
--- a/CHANGES.txt
+++ b/CHANGES.txt
@@ -2,6 +2,7 @@
* Support cert based host key auth, fix asterisk in known_hosts [#833]
* Support kex dh-group14-sha256 [#795]
+ * Fix StrictHostKeyChecking ssh config parameter translation [#765]
=== 6.2.0 rc1
diff --git a/lib/net/ssh/version.rb b/lib/net/ssh/version.rb
index 54cadee..c7de5f6 100644
--- a/lib/net/ssh/version.rb
+++ b/lib/net/ssh/version.rb
@@ -49,14 +49,14 @@ module Net
MAJOR = 6
# The minor component of this version of the Net::SSH library
- MINOR = 2
+ MINOR = 3
# The tiny component of this version of the Net::SSH library
TINY = 0
# The prerelease component of this version of the Net::SSH library
# nil allowed
- PRE = "rc2"
+ PRE = "beta1"
# The current version of the Net::SSH library as a Version instance
CURRENT = new(*[MAJOR, MINOR, TINY, PRE].compact)