mirror of
https://github.com/tokio-rs/tokio.git
synced 2025-10-01 12:20:39 +00:00
chore: prepare tokio-util v0.7.5 (#5442)
This commit is contained in:
parent
8b44077ebc
commit
74fb9e387a
@ -1,3 +1,38 @@
|
|||||||
|
# 0.7.5 (February 9, 2023)
|
||||||
|
|
||||||
|
This release fixes an accidental breaking change where `UnwindSafe` was
|
||||||
|
accidentally removed from `CancellationToken`.
|
||||||
|
|
||||||
|
### Added
|
||||||
|
- codec: add `Framed::backpressure_boundary` ([#5124])
|
||||||
|
- io: add `InspectReader` and `InspectWriter` ([#5033])
|
||||||
|
- io: add `tokio_util::io::{CopyToBytes, SinkWriter}` ([#5070], [#5436])
|
||||||
|
- io: impl `std::io::BufRead` on `SyncIoBridge` ([#5265])
|
||||||
|
- sync: add `PollSemaphore::poll_acquire_many` ([#5137])
|
||||||
|
- sync: add owned future for `CancellationToken` ([#5153])
|
||||||
|
- time: add `DelayQueue::try_remove` ([#5052])
|
||||||
|
|
||||||
|
### Fixed
|
||||||
|
- codec: fix `LengthDelimitedCodec` buffer over-reservation ([#4997])
|
||||||
|
- sync: impl `UnwindSafe` on `CancellationToken` ([#5438])
|
||||||
|
- util: remove `Encoder` bound on `FramedParts` constructor ([#5280])
|
||||||
|
|
||||||
|
### Documented
|
||||||
|
- io: add lines example for `StreamReader` ([#5145])
|
||||||
|
|
||||||
|
[#4997]: https://github.com/tokio-rs/tokio/pull/4997
|
||||||
|
[#5033]: https://github.com/tokio-rs/tokio/pull/5033
|
||||||
|
[#5052]: https://github.com/tokio-rs/tokio/pull/5052
|
||||||
|
[#5070]: https://github.com/tokio-rs/tokio/pull/5070
|
||||||
|
[#5124]: https://github.com/tokio-rs/tokio/pull/5124
|
||||||
|
[#5137]: https://github.com/tokio-rs/tokio/pull/5137
|
||||||
|
[#5145]: https://github.com/tokio-rs/tokio/pull/5145
|
||||||
|
[#5153]: https://github.com/tokio-rs/tokio/pull/5153
|
||||||
|
[#5265]: https://github.com/tokio-rs/tokio/pull/5265
|
||||||
|
[#5280]: https://github.com/tokio-rs/tokio/pull/5280
|
||||||
|
[#5436]: https://github.com/tokio-rs/tokio/pull/5436
|
||||||
|
[#5438]: https://github.com/tokio-rs/tokio/pull/5438
|
||||||
|
|
||||||
# 0.7.4 (September 8, 2022)
|
# 0.7.4 (September 8, 2022)
|
||||||
|
|
||||||
### Added
|
### Added
|
||||||
|
@ -4,7 +4,7 @@ name = "tokio-util"
|
|||||||
# - Remove path dependencies
|
# - Remove path dependencies
|
||||||
# - Update CHANGELOG.md.
|
# - Update CHANGELOG.md.
|
||||||
# - Create "tokio-util-0.7.x" git tag.
|
# - Create "tokio-util-0.7.x" git tag.
|
||||||
version = "0.7.4"
|
version = "0.7.5"
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
rust-version = "1.49"
|
rust-version = "1.49"
|
||||||
authors = ["Tokio Contributors <team@tokio.rs>"]
|
authors = ["Tokio Contributors <team@tokio.rs>"]
|
||||||
|
Loading…
x
Reference in New Issue
Block a user