summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMiklos Fazekas <mfazekas@szemafor.com>2020-04-25 17:21:22 +0200
committerMiklos Fazekas <mfazekas@szemafor.com>2020-04-25 17:21:30 +0200
commit139126b08ded6fe2451c3791a1c041f378920a05 (patch)
treecd00b00546bf9d3642d8b2874e46aa8156d27d28
parent92669095ab1689a140f7fcc46b16480f9b5c93ea (diff)
downloadnet-ssh-139126b08ded6fe2451c3791a1c041f378920a05.tar.gz
6.1.0.rc1v6.1.0.rc1
-rw-r--r--CHANGES.txt18
-rw-r--r--lib/net/ssh/version.rb6
2 files changed, 21 insertions, 3 deletions
diff --git a/CHANGES.txt b/CHANGES.txt
index a84ac7c..592dfe2 100644
--- a/CHANGES.txt
+++ b/CHANGES.txt
@@ -1,3 +1,21 @@
+=== 6.1.0.rc1
+
+ * Make sha2-{256,512}-etm@openssh.com MAC default again [#761]
+ * Support algorithm subtraction syntax from ssh_config [#751]
+
+=== 6.0.2
+
+ * Fix corrupted hmac issue in etm hmac [#759]
+
+=== 6.0.1
+
+ * Make sha2-{256,512}-etm@openssh.com MAC opt-in as they seems to have issues [#757]
+
+=== 6.0.0
+
+ * Support empty lines and comments in known_hosts [donoghuc, #742]
+ * Add sha2-{256,512}-etm@openssh.com MAC algorithms [graaff, #714]
+
=== 6.0.0 beta2
* Support :certkeys and CertificateFile configuration option [Anders Carling, #722]
diff --git a/lib/net/ssh/version.rb b/lib/net/ssh/version.rb
index 1681dd8..65c6a44 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 = 0
+ MINOR = 1
# The tiny component of this version of the Net::SSH library
- TINY = 1
+ TINY = 0
# The prerelease component of this version of the Net::SSH library
# nil allowed
- PRE = nil
+ PRE = "rc1"
# The current version of the Net::SSH library as a Version instance
CURRENT = new(*[MAJOR, MINOR, TINY, PRE].compact)