summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordAxpeDDa <daxpedda@gmail.com>2023-06-14 16:31:47 +0200
committerDirkjan Ochtman <dirkjan@ochtman.nl>2023-06-14 17:19:12 +0200
commit5053fde25bb0fde5715a95601a62c8fae626600e (patch)
treec25496b6004a5701e604713a86070e420c6ac7b0
parent7d333d23210ed88b2df90e10610a98113e4d2fea (diff)
Prepare 0.21.2v/0.21.2
-rw-r--r--README.md5
-rw-r--r--rustls/Cargo.toml2
2 files changed, 5 insertions, 2 deletions
diff --git a/README.md b/README.md
index a5e52aeb..4046701c 100644
--- a/README.md
+++ b/README.md
@@ -20,8 +20,11 @@ If you'd like to help out, please see [CONTRIBUTING.md](CONTRIBUTING.md).
## Release history
-* Next release:
+* Release 0.21.2 (2023-06-14)
- Bump MSRV to 1.60 to track similar change in dependencies.
+ - Differentiate between unexpected and expected EOF in `Stream` and `OwnedStream`.
+ - `RootCertStore::add_parsable_certificates` now takes a `&[impl AsRef<[u8]>]`.
+ - Add QUIC V2 support.
* Release 0.21.1 (2023-05-01)
- Remove `warn`-level logging from code paths that also return a `rustls::Error` with
the same information.
diff --git a/rustls/Cargo.toml b/rustls/Cargo.toml
index e02f895e..e83329d8 100644
--- a/rustls/Cargo.toml
+++ b/rustls/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "rustls"
-version = "0.21.1"
+version = "0.21.2"
edition = "2021"
rust-version = "1.60"
license = "Apache-2.0 OR ISC OR MIT"