From 3adec41fb3f8952ccad92cefe5afb386adb406c9 Mon Sep 17 00:00:00 2001 From: Daniel Abramov Date: Sun, 2 Jun 2024 12:53:50 +0200 Subject: [PATCH] Prepare 0.23.0 release --- CHANGELOG.md | 7 ++++++- Cargo.toml | 6 +++--- 2 files changed, 9 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b816a633..d38a0f9c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,7 +1,12 @@ +# 0.23.0 + +- Update `tungstenite` to `0.23.0`. +- Disable default features on TLS crates. + # 0.22.0 - Update TLS dependencies. -- Update `tungstenite` to match `0.22.0`. +- ~~Update `tungstenite` to match `0.22.0`.~~ # 0.21.0 diff --git a/Cargo.toml b/Cargo.toml index 6f76a5c8..6ea16a9d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -6,9 +6,9 @@ keywords = ["websocket", "io", "web"] authors = ["Daniel Abramov ", "Alexey Galakhov "] license = "MIT" homepage = "https://github.com/snapview/tokio-tungstenite" -documentation = "https://docs.rs/tokio-tungstenite/0.22.0" +documentation = "https://docs.rs/tokio-tungstenite/0.23.0" repository = "https://github.com/snapview/tokio-tungstenite" -version = "0.22.0" +version = "0.23.0" edition = "2018" rust-version = "1.63" include = ["examples/**/*", "src/**/*", "LICENSE", "README.md", "CHANGELOG.md"] @@ -33,7 +33,7 @@ futures-util = { version = "0.3.28", default-features = false, features = ["sink tokio = { version = "1.0.0", default-features = false, features = ["io-util"] } [dependencies.tungstenite] -version = "0.21.0" +version = "0.23.0" default-features = false [dependencies.native-tls-crate]