mirror of
https://github.com/tokio-rs/tokio.git
synced 2025-10-01 12:20:39 +00:00
chore: prepare tokio-util v0.6.3 (#3488)
This commit is contained in:
parent
ee1f0c473f
commit
60d88840f4
@ -1,4 +1,16 @@
|
|||||||
# 0.6.2 (January 21, 2020)
|
# 0.6.3 (January 31, 2021)
|
||||||
|
|
||||||
|
### Added
|
||||||
|
|
||||||
|
- sync: add `ReusableBoxFuture` utility ([#3464])
|
||||||
|
|
||||||
|
### Changed
|
||||||
|
|
||||||
|
- sync: use `ReusableBoxFuture` for `PollSemaphore` ([#3463])
|
||||||
|
- deps: remove `async-stream` dependency ([#3463])
|
||||||
|
- deps: remove `tokio-stream` dependency ([#3487])
|
||||||
|
|
||||||
|
# 0.6.2 (January 21, 2021)
|
||||||
|
|
||||||
### Added
|
### Added
|
||||||
|
|
||||||
@ -8,7 +20,7 @@
|
|||||||
|
|
||||||
- time: fix panics on updating `DelayQueue` entries ([#3270])
|
- time: fix panics on updating `DelayQueue` entries ([#3270])
|
||||||
|
|
||||||
# 0.6.1 (January 12, 2020)
|
# 0.6.1 (January 12, 2021)
|
||||||
|
|
||||||
### Added
|
### Added
|
||||||
|
|
||||||
@ -72,6 +84,9 @@
|
|||||||
|
|
||||||
- Initial release
|
- Initial release
|
||||||
|
|
||||||
|
[#3487]: https://github.com/tokio-rs/tokio/pull/3487
|
||||||
|
[#3464]: https://github.com/tokio-rs/tokio/pull/3464
|
||||||
|
[#3463]: https://github.com/tokio-rs/tokio/pull/3463
|
||||||
[#3444]: https://github.com/tokio-rs/tokio/pull/3444
|
[#3444]: https://github.com/tokio-rs/tokio/pull/3444
|
||||||
[#3387]: https://github.com/tokio-rs/tokio/pull/3387
|
[#3387]: https://github.com/tokio-rs/tokio/pull/3387
|
||||||
[#3364]: https://github.com/tokio-rs/tokio/pull/3364
|
[#3364]: https://github.com/tokio-rs/tokio/pull/3364
|
||||||
|
@ -7,13 +7,13 @@ name = "tokio-util"
|
|||||||
# - Cargo.toml
|
# - Cargo.toml
|
||||||
# - Update CHANGELOG.md.
|
# - Update CHANGELOG.md.
|
||||||
# - Create "tokio-util-0.6.x" git tag.
|
# - Create "tokio-util-0.6.x" git tag.
|
||||||
version = "0.6.2"
|
version = "0.6.3"
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
authors = ["Tokio Contributors <team@tokio.rs>"]
|
authors = ["Tokio Contributors <team@tokio.rs>"]
|
||||||
license = "MIT"
|
license = "MIT"
|
||||||
repository = "https://github.com/tokio-rs/tokio"
|
repository = "https://github.com/tokio-rs/tokio"
|
||||||
homepage = "https://tokio.rs"
|
homepage = "https://tokio.rs"
|
||||||
documentation = "https://docs.rs/tokio-util/0.6.2/tokio_util"
|
documentation = "https://docs.rs/tokio-util/0.6.3/tokio_util"
|
||||||
description = """
|
description = """
|
||||||
Additional utilities for working with Tokio.
|
Additional utilities for working with Tokio.
|
||||||
"""
|
"""
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
#![doc(html_root_url = "https://docs.rs/tokio-util/0.6.2")]
|
#![doc(html_root_url = "https://docs.rs/tokio-util/0.6.3")]
|
||||||
#![allow(clippy::needless_doctest_main)]
|
#![allow(clippy::needless_doctest_main)]
|
||||||
#![warn(
|
#![warn(
|
||||||
missing_debug_implementations,
|
missing_debug_implementations,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user