mirror of
https://github.com/tokio-rs/tokio.git
synced 2026-09-08 00:00:13 +02:00
chore: prepare tokio-util 0.6.2 (#3453)
This commit is contained in:
@@ -1,3 +1,13 @@
|
|||||||
|
# 0.6.2 (January 21, 2020)
|
||||||
|
|
||||||
|
### Added
|
||||||
|
|
||||||
|
- sync: add pollable `Semaphore` ([#3444])
|
||||||
|
|
||||||
|
### Fixed
|
||||||
|
|
||||||
|
- time: fix panics on updating `DelayQueue` entries ([#3270])
|
||||||
|
|
||||||
# 0.6.1 (January 12, 2020)
|
# 0.6.1 (January 12, 2020)
|
||||||
|
|
||||||
### Added
|
### Added
|
||||||
@@ -62,8 +72,10 @@
|
|||||||
|
|
||||||
- Initial release
|
- Initial release
|
||||||
|
|
||||||
|
[#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
|
||||||
|
[#3270]: https://github.com/tokio-rs/tokio/pull/3270
|
||||||
[#2326]: https://github.com/tokio-rs/tokio/pull/2326
|
[#2326]: https://github.com/tokio-rs/tokio/pull/2326
|
||||||
[#2215]: https://github.com/tokio-rs/tokio/pull/2215
|
[#2215]: https://github.com/tokio-rs/tokio/pull/2215
|
||||||
[#2198]: https://github.com/tokio-rs/tokio/pull/2198
|
[#2198]: https://github.com/tokio-rs/tokio/pull/2198
|
||||||
|
|||||||
@@ -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.1"
|
version = "0.6.2"
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
authors = ["Tokio Contributors <[email protected]>"]
|
authors = ["Tokio Contributors <[email protected]>"]
|
||||||
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.1/tokio_util"
|
documentation = "https://docs.rs/tokio-util/0.6.2/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.1")]
|
#![doc(html_root_url = "https://docs.rs/tokio-util/0.6.2")]
|
||||||
#![allow(clippy::needless_doctest_main)]
|
#![allow(clippy::needless_doctest_main)]
|
||||||
#![warn(
|
#![warn(
|
||||||
missing_debug_implementations,
|
missing_debug_implementations,
|
||||||
|
|||||||
Reference in New Issue
Block a user