From 93dbdf0a0cec5be58ba24181ae2a9b523ed1be85 Mon Sep 17 00:00:00 2001 From: quininer Date: Fri, 6 Dec 2024 01:38:48 +0800 Subject: [PATCH] release 0.26.1 (#95) * When a write returns `Ok(0)`, a `WriteZero` error may be thrown. fix https://github.com/rustls/tokio-rustls/issues/92 * MSRV updated to 1.70 --- Cargo.lock | 2 +- Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index a12cc63..86280b6 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -806,7 +806,7 @@ dependencies = [ [[package]] name = "tokio-rustls" -version = "0.26.0" +version = "0.26.1" dependencies = [ "argh", "futures-util", diff --git a/Cargo.toml b/Cargo.toml index c9b89bd..e1f71ea 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tokio-rustls" -version = "0.26.0" +version = "0.26.1" license = "MIT OR Apache-2.0" repository = "https://github.com/rustls/tokio-rustls" homepage = "https://github.com/rustls/tokio-rustls"