diff --git a/CHANGELOG.md b/CHANGELOG.md index 959cbfe..6f9a036 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,12 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [0.26.2] - 2024-06-17 +### Fixed +- Work around bug related to `futures_task::ArcWake`, which causes + busy looping because of spurious waker "changes" caused by creating the same + waker with different vtables. + ## [0.26.1] - 2024-06-06 ### Added - New `url` feature that maps to the corresponding feature from `tungstenite` @@ -191,7 +197,8 @@ No changelog is available for older versions as of yet. --> -[Unreleased]: https://github.com/sdroege/async-tungstenite/compare/0.26.1...HEAD +[Unreleased]: https://github.com/sdroege/async-tungstenite/compare/0.26.2...HEAD +[0.26.2]: https://github.com/sdroege/async-tungstenite/compare/0.26.2...0.26.1 [0.26.1]: https://github.com/sdroege/async-tungstenite/compare/0.26.1...0.26.0 [0.26.0]: https://github.com/sdroege/async-tungstenite/compare/0.26.0...0.25.1 [0.25.1]: https://github.com/sdroege/async-tungstenite/compare/0.25.1...0.25.0 diff --git a/Cargo.toml b/Cargo.toml index a170ccf..e27eab4 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -8,7 +8,7 @@ license = "MIT" homepage = "https://github.com/sdroege/async-tungstenite" repository = "https://github.com/sdroege/async-tungstenite" documentation = "https://docs.rs/async-tungstenite" -version = "0.26.1" +version = "0.26.2" edition = "2018" readme = "README.md" include = ["examples/**/*", "src/**/*", "LICENSE", "README.md", "CHANGELOG.md"]