futures: prepare to publish 0.1.1 (#414)

### Added

- `Instrumented::inner` and `inner_mut` methods that expose access to the
  instrumented future (#386)

Signed-off-by: Eliza Weisman <eliza@buoyant.io>
This commit is contained in:
Eliza Weisman 2019-10-29 14:44:29 -07:00 committed by GitHub
parent 6f00dbda5f
commit e0132f8879
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 13 additions and 6 deletions

View File

@ -1,3 +1,10 @@
# 0.1.1 (Oct 25, 2019)
### Added
- `Instrumented::inner` and `inner_mut` methods that expose access to the
instrumented future (#386)
# 0.1.0 (Oct 8, 2019)
- Initial release

View File

@ -1,6 +1,6 @@
[package]
name = "tracing-futures"
version = "0.1.0"
version = "0.1.1"
authors = ["Eliza Weisman <eliza@buoyant.io>", "Tokio Contributors <team@tokio.rs>"]
edition = "2018"
repository = "https://github.com/tokio-rs/tracing"

View File

@ -13,9 +13,9 @@ Utilities for instrumenting futures-based code with [`tracing`].
[Documentation][docs-url] | [Chat][discord-url]
[crates-badge]: https://img.shields.io/crates/v/tracing-futures.svg
[crates-url]: https://crates.io/crates/tracing-futures/0.1.0
[crates-url]: https://crates.io/crates/tracing-futures/0.1.1
[docs-badge]: https://docs.rs/tracing-futures/badge.svg
[docs-url]: https://docs.rs/tracing-futures/0.1.0/tracing_futures
[docs-url]: https://docs.rs/tracing-futures/0.1.1/tracing_futures
[docs-master-badge]: https://img.shields.io/badge/docs-master-blue
[docs-master-url]: https://tracing-rs.netlify.com/tracing_futures
[mit-badge]: https://img.shields.io/badge/license-MIT-blue.svg
@ -41,8 +41,8 @@ The crate provides the following traits:
* [`WithSubscriber`] allows a `tracing` [`Subscriber`] to be attached to a
future, sink, stream, or executor.
[`Instrument`]: https://docs.rs/tracing-futures/0.1.0/tracing_futures/trait.Instrument.html
[`WithSubscriber`]: https://docs.rs/tracing-futures/0.1.0/tracing_futures/trait.WithSubscriber.html
[`Instrument`]: https://docs.rs/tracing-futures/0.1.1/tracing_futures/trait.Instrument.html
[`WithSubscriber`]: https://docs.rs/tracing-futures/0.1.1/tracing_futures/trait.WithSubscriber.html
[span]: https://docs.rs/tracing/0.1.9/tracing/span/index.html
[`Subscriber`]: https://docs.rs/tracing/0.1.9/tracing/subscriber/index.html
[`tracing`]: https://crates.io/tracing

View File

@ -46,7 +46,7 @@
//! [`Instrument`]: trait.Instrument.html
//! [`WithSubscriber`]: trait.WithSubscriber.html
//! [`futures`]: https://crates.io/crates/futures
#![doc(html_root_url = "https://docs.rs/tracing-futures/0.1.0")]
#![doc(html_root_url = "https://docs.rs/tracing-futures/0.1.1")]
#![warn(
missing_debug_implementations,
missing_docs,