summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoseph Birr-Pixton <jpixton@gmail.com>2023-01-12 15:54:32 +0000
committerJoseph Birr-Pixton <jpixton@gmail.com>2023-01-12 16:14:22 +0000
commit9b5bb50d9df22a2d2155a7bf35155a24824c40a6 (patch)
treefbb79ab2d4e6ab5d248194dae257da8d08d6ccb6
parentd4cf46404f04994a109baed5e3b3e038d2d1b07b (diff)
Prepare 0.20.8v/0.20.8
-rw-r--r--README.md4
-rw-r--r--rustls/Cargo.toml2
2 files changed, 3 insertions, 3 deletions
diff --git a/README.md b/README.md
index 4a01666d..5ddb46d0 100644
--- a/README.md
+++ b/README.md
@@ -22,11 +22,11 @@ If you'd like to help out, please see [CONTRIBUTING.md](CONTRIBUTING.md).
* Next release
- Planned: removal of unused signature verification schemes at link-time.
-* 0.20.8 (TBD)
+* 0.20.8 (2023-01-12)
- Yield an error from `ConnectionCommon::read_tls()` if buffers are full.
Both a full deframer buffer and a full incoming plaintext buffer will
now cause an error to be returned. Callers should call `process_new_packets()`
- and read out the `writer()` after each successful call to `read_tls()`.
+ and read out the plaintext data from `reader()` after each successful call to `read_tls()`.
- The minimum supported Rust version is now 1.57.0 due to some dependencies
requiring it.
* 0.20.7 (2022-10-18)
diff --git a/rustls/Cargo.toml b/rustls/Cargo.toml
index 08014355..75538e3a 100644
--- a/rustls/Cargo.toml
+++ b/rustls/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "rustls"
-version = "0.20.7"
+version = "0.20.8"
edition = "2018"
rust-version = "1.57"
license = "Apache-2.0/ISC/MIT"