diff --git a/CHANGELOG.md b/CHANGELOG.md index c88fbf6..90ea05f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -13,8 +13,23 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Changed +### Fixed + +# [0.11.1] - 2024-10-19 + +### Added + +- `SendSink::sender` +- `SendFut`, `SendSink`, `RecvFut`, `RecvStream`, `WeakSender`, `Iter`, `TryIter`, and `IntoIter` now implement `Debug` +- Docs now show required features + +### Removed + +### Changed + - `WeakSender` is now `Clone` - `spin` feature no longer uses `std::thread::sleep` for locking except on Unix-like operating systems and Windows +- Flume is now in [casual maintenance mode](https://casuallymaintained.tech/). ### Fixed diff --git a/Cargo.toml b/Cargo.toml index 855ca6d..6389a2e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "flume" -version = "0.11.0" +version = "0.11.1" authors = ["Joshua Barretto "] edition = "2018" description = "A blazingly fast multi-producer channel" diff --git a/README.md b/README.md index 335d6cf..f6ce725 100644 --- a/README.md +++ b/README.md @@ -78,6 +78,15 @@ Tests were performed on an AMD Ryzen 7 3700x with 8/16 cores running Linux kerne # Flume benchmarks (crossbeam benchmark suite) +## Status + +Flume is in [casual maintenance mode](https://casuallymaintained.tech/). This means that the crate will continue to +receive critical security and bug fixes, but heavy feature development has stopped. If you're looking for a new +feature, you're welcome to open a PR and I'll try to find the time to review it. + +Flume has been great fun to work on, and I'm happy that it's being used successfully by so many people. I consider the +crate to be largely feature-complete at this point (bar small details here and there). + ## License Flume is licensed under either of: