diff --git a/CHANGELOG.md b/CHANGELOG.md index 92dba21..f27899c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,8 @@ +# 0.24.0 + +- Update dependencies (TLS, tungstenite). +- Return a runtime error when WSS URLs are used without a proper TLS feature enabled. + # 0.23.1 - Introduce a `url` feature (proxies to `tungstenite/url`). diff --git a/Cargo.toml b/Cargo.toml index 4711060..180a75a 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.23.1" +documentation = "https://docs.rs/tokio-tungstenite/0.24.0" repository = "https://github.com/snapview/tokio-tungstenite" -version = "0.23.1" +version = "0.24.0" edition = "2018" rust-version = "1.63" include = ["examples/**/*", "src/**/*", "LICENSE", "README.md", "CHANGELOG.md"] @@ -34,7 +34,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.23.0" +version = "0.24.0" default-features = false [dependencies.native-tls-crate]