diff --git a/CHANGELOG.md b/CHANGELOG.md index a838b23..0cb84fd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +# 0.26.1 + +- Update `tungstenite` to address an issue that might cause UB in certain cases. + # 0.26.0 - Update `tungstenite` to `0.26.0` ([breaking changes](https://github.com/snapview/tungstenite-rs/blob/master/CHANGELOG.md#0260)). diff --git a/Cargo.toml b/Cargo.toml index 35c60bb..f15ebc6 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.26.0" +documentation = "https://docs.rs/tokio-tungstenite/0.26.1" repository = "https://github.com/snapview/tokio-tungstenite" -version = "0.26.0" +version = "0.26.1" 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.26.0" +version = "0.26.1" default-features = false [dependencies.native-tls-crate]