summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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)