From 1b4adde57dc2e359203d594e1734d906e07e42a2 Mon Sep 17 00:00:00 2001 From: Daniel Abramov Date: Thu, 19 Dec 2024 15:31:19 +0100 Subject: [PATCH] Bump version --- CHANGELOG.md | 4 ++++ Cargo.toml | 4 ++-- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 54d879ed..bca48bb3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +# 0.26.1 + +- Fix/revert unsoundness that could lead to UB with dodgy `Read` stream implementations. + # 0.26.0 - Simplify `Message` to use `Bytes` payload directly with simpler `Utf8Bytes` for text. - Change `CloseFrame` to use `Utf8Bytes` for `reason`. diff --git a/Cargo.toml b/Cargo.toml index 0d6f5eb5..1fe90f09 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -7,9 +7,9 @@ authors = ["Alexey Galakhov", "Daniel Abramov"] license = "MIT OR Apache-2.0" readme = "README.md" homepage = "https://github.com/snapview/tungstenite-rs" -documentation = "https://docs.rs/tungstenite/0.26.0" +documentation = "https://docs.rs/tungstenite/0.26.1" repository = "https://github.com/snapview/tungstenite-rs" -version = "0.26.0" +version = "0.26.1" edition = "2021" rust-version = "1.63" include = ["benches/**/*", "src/**/*", "examples/**/*", "LICENSE-*", "README.md", "CHANGELOG.md"]