summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoseph Birr-Pixton <jpixton@gmail.com>2023-04-30 11:33:35 +0100
committerctz <jpixton@gmail.com>2023-05-01 19:56:42 +0100
commit975e1ca5949b73d43f922aea8a248b96bfcfae74 (patch)
tree50586ca40e38aac6fc0ce283a7227a515f41177b
parent4f1c5da7f216b2c0d5a5be06ba6a2a9c999b759f (diff)
Prepare 0.21.1v/0.21.1
-rw-r--r--README.md8
-rw-r--r--rustls/Cargo.toml2
2 files changed, 8 insertions, 2 deletions
diff --git a/README.md b/README.md
index fd4574dd..c9c20e38 100644
--- a/README.md
+++ b/README.md
@@ -20,7 +20,13 @@ If you'd like to help out, please see [CONTRIBUTING.md](CONTRIBUTING.md).
## Release history
-* Current release: 0.21.0 (2023-03-29)
+* Release 0.21.1 (2023-05-01)
+ - Remove `warn`-level logging from code paths that also return a `rustls::Error` with
+ the same information.
+ - Bug fix: ensure `ConnectionCommon::complete_io` flushes pending writes.
+ - Bug fix: correct encoding of acceptable issuer subjects when rustls operates as a server
+ requesting client authentication. This was a regression introduced in 0.21.0.
+* Release 0.21.0 (2023-03-29)
- Support for connecting to peers named with IP addresses. This means
rustls now depends on a fork of webpki - `rustls-webpki` - with a suitably
extended API.
diff --git a/rustls/Cargo.toml b/rustls/Cargo.toml
index 175f328a..bc59f1bb 100644
--- a/rustls/Cargo.toml
+++ b/rustls/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "rustls"
-version = "0.21.0"
+version = "0.21.1"
edition = "2021"
rust-version = "1.57"
license = "Apache-2.0 OR ISC OR MIT"