summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMiklos Fazekas <mfazekas@szemafor.com>2020-06-11 08:07:57 +0200
committerMiklos Fazekas <mfazekas@szemafor.com>2020-06-11 08:08:30 +0200
commit8b1914b5c759f3c5134ebe8bf648e99c0274f6df (patch)
treef48286e81e915539c40196f03966da135d4d258b
parentf8952fb1e8bcf7afa30400a41832ee7bc921a928 (diff)
downloadnet-ssh-8b1914b5c759f3c5134ebe8bf648e99c0274f6df.tar.gz
6.2.0.beta1 preparev6.2.0.beta1
-rw-r--r--CHANGES.txt5
-rw-r--r--lib/net/ssh/version.rb4
2 files changed, 7 insertions, 2 deletions
diff --git a/CHANGES.txt b/CHANGES.txt
index b237792..b9427a7 100644
--- a/CHANGES.txt
+++ b/CHANGES.txt
@@ -1,3 +1,8 @@
+=== 6.2.0. beta1
+
+ * rsa-sha2-512, rsa-sha2-256 host_key algs [#771]
+ * JRuby aes*-ctr suppport [#767]
+
=== 6.1.0
* Adapt to ssh's default behaviors when no username is provided.
diff --git a/lib/net/ssh/version.rb b/lib/net/ssh/version.rb
index 662e92e..43cda5f 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 = 1
+ MINOR = 2
# 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 = nil
+ PRE = "beta1"
# The current version of the Net::SSH library as a Version instance
CURRENT = new(*[MAJOR, MINOR, TINY, PRE].compact)