summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--CHANGES.txt5
-rw-r--r--lib/net/ssh/version.rb2
2 files changed, 5 insertions, 2 deletions
diff --git a/CHANGES.txt b/CHANGES.txt
index 69fbd91..5f5cefb 100644
--- a/CHANGES.txt
+++ b/CHANGES.txt
@@ -1,5 +1,8 @@
-=== 5.0.0
+=== 5.0.0.rc1
* Breaking change: ed25519 now requires ed25519 gem instead of RbNaCl gem [#563]
+ * Fix larger than 4GB file transfers [#599]
+ * Update HTTP proxy to version 1.1 [Connor Dunn, #597]
+ * Verify_host_key options rename (true, false, :very, :secure depreacted new equivalents are :never, :accept_new_or_local_tunnel :accept_new :always) [Jared Beck, #595]
=== 5.0.0.beta2
* Support for sha256 pubkey fingerprint [Tom Maher, #585]
diff --git a/lib/net/ssh/version.rb b/lib/net/ssh/version.rb
index 1078640..4111d13 100644
--- a/lib/net/ssh/version.rb
+++ b/lib/net/ssh/version.rb
@@ -56,7 +56,7 @@ module Net
# The prerelease component of this version of the Net::SSH library
# nil allowed
- PRE = "beta2"
+ PRE = "rc1"
# The current version of the Net::SSH library as a Version instance
CURRENT = new(*[MAJOR, MINOR, TINY, PRE].compact)