mirror of
https://github.com/tokio-rs/tokio.git
synced 2026-09-07 00:00:08 +02:00
@@ -1,6 +1,11 @@
|
|||||||
This changelog only applies to the `tokio` crate proper. Each sub crate
|
This changelog only applies to the `tokio` crate proper. Each sub crate
|
||||||
maintains its own changelog tracking changes made in each respective sub crate.
|
maintains its own changelog tracking changes made in each respective sub crate.
|
||||||
|
|
||||||
|
# 0.1.17 (March 13, 2019)
|
||||||
|
|
||||||
|
### Added
|
||||||
|
- Propagate trace subscriber in the runtime (#966).
|
||||||
|
|
||||||
# 0.1.16 (March 1, 2019)
|
# 0.1.16 (March 1, 2019)
|
||||||
|
|
||||||
### Fixed
|
### Fixed
|
||||||
|
|||||||
+2
-2
@@ -7,11 +7,11 @@ name = "tokio"
|
|||||||
# - README.md
|
# - README.md
|
||||||
# - Update CHANGELOG.md.
|
# - Update CHANGELOG.md.
|
||||||
# - Create "v0.1.x" git tag.
|
# - Create "v0.1.x" git tag.
|
||||||
version = "0.1.16"
|
version = "0.1.17"
|
||||||
authors = ["Carl Lerche <[email protected]>"]
|
authors = ["Carl Lerche <[email protected]>"]
|
||||||
license = "MIT"
|
license = "MIT"
|
||||||
readme = "README.md"
|
readme = "README.md"
|
||||||
documentation = "https://docs.rs/tokio/0.1.16/tokio/"
|
documentation = "https://docs.rs/tokio/0.1.17/tokio/"
|
||||||
repository = "https://github.com/tokio-rs/tokio"
|
repository = "https://github.com/tokio-rs/tokio"
|
||||||
homepage = "https://tokio.rs"
|
homepage = "https://tokio.rs"
|
||||||
description = """
|
description = """
|
||||||
|
|||||||
@@ -28,7 +28,7 @@ the Rust programming language. It is:
|
|||||||
|
|
||||||
[Website](https://tokio.rs) |
|
[Website](https://tokio.rs) |
|
||||||
[Guides](https://tokio.rs/docs/getting-started/hello-world/) |
|
[Guides](https://tokio.rs/docs/getting-started/hello-world/) |
|
||||||
[API Docs](https://docs.rs/tokio/0.1.16/tokio) |
|
[API Docs](https://docs.rs/tokio/0.1.17/tokio) |
|
||||||
[Chat](https://gitter.im/tokio-rs/tokio)
|
[Chat](https://gitter.im/tokio-rs/tokio)
|
||||||
|
|
||||||
The API docs for the master branch are published [here][master-dox].
|
The API docs for the master branch are published [here][master-dox].
|
||||||
|
|||||||
+1
-1
@@ -1,4 +1,4 @@
|
|||||||
#![doc(html_root_url = "https://docs.rs/tokio/0.1.16")]
|
#![doc(html_root_url = "https://docs.rs/tokio/0.1.17")]
|
||||||
#![deny(missing_docs, warnings, missing_debug_implementations)]
|
#![deny(missing_docs, warnings, missing_debug_implementations)]
|
||||||
#![cfg_attr(
|
#![cfg_attr(
|
||||||
feature = "async-await-preview",
|
feature = "async-await-preview",
|
||||||
|
|||||||
@@ -1,3 +1,11 @@
|
|||||||
|
# 0.1.4 (March 13, 2019)
|
||||||
|
|
||||||
|
### Fixed
|
||||||
|
- Fix memory leak on channel drop (#917).
|
||||||
|
|
||||||
|
### Added
|
||||||
|
- `std::error::Error` implementation for `oneshot`, `watch` error types (#967).
|
||||||
|
|
||||||
# 0.1.3 (March 1, 2019)
|
# 0.1.3 (March 1, 2019)
|
||||||
|
|
||||||
### Added
|
### Added
|
||||||
|
|||||||
@@ -7,12 +7,12 @@ name = "tokio-sync"
|
|||||||
# - README.md
|
# - README.md
|
||||||
# - Update CHANGELOG.md.
|
# - Update CHANGELOG.md.
|
||||||
# - Create "v0.1.x" git tag.
|
# - Create "v0.1.x" git tag.
|
||||||
version = "0.1.3"
|
version = "0.1.4"
|
||||||
authors = ["Carl Lerche <[email protected]>"]
|
authors = ["Carl Lerche <[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-sync/0.1.3/tokio_sync"
|
documentation = "https://docs.rs/tokio-sync/0.1.4/tokio_sync"
|
||||||
description = """
|
description = """
|
||||||
Synchronization utilities.
|
Synchronization utilities.
|
||||||
"""
|
"""
|
||||||
|
|||||||
@@ -2,7 +2,7 @@
|
|||||||
|
|
||||||
Synchronization utilities
|
Synchronization utilities
|
||||||
|
|
||||||
[Documentation](https://docs.rs/tokio-sync/0.1.3/tokio_sync/)
|
[Documentation](https://docs.rs/tokio-sync/0.1.4/tokio_sync/)
|
||||||
|
|
||||||
## Overview
|
## Overview
|
||||||
|
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
#![doc(html_root_url = "https://docs.rs/tokio-sync/0.1.3")]
|
#![doc(html_root_url = "https://docs.rs/tokio-sync/0.1.4")]
|
||||||
#![deny(missing_debug_implementations, missing_docs, unreachable_pub)]
|
#![deny(missing_debug_implementations, missing_docs, unreachable_pub)]
|
||||||
#![cfg_attr(test, deny(warnings))]
|
#![cfg_attr(test, deny(warnings))]
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user