Skip to content

Commit

Permalink
futures: prepare to release 0.2.5 (tokio-rs#1241)
Browse files Browse the repository at this point in the history
  • Loading branch information
hawkw authored and kaffarell committed May 22, 2024
1 parent 2893e29 commit cb5a4de
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 5 deletions.
18 changes: 18 additions & 0 deletions tracing-futures/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,21 @@
# 0.2.5 (February 16, 2021)

### Changed

- Updated `pin-project` dependency to 1.0 ([#1038])

### Fixed

- Several documentation fixes and improvements ([#832], [#911], [#913], [#941],
[#953], [#981])

[#1038]: https://github.com/tokio-rs/tracing/pulls/1038
[#832]: https://github.com/tokio-rs/tracing/pulls/832
[#911]: https://github.com/tokio-rs/tracing/pulls/911
[#913]: https://github.com/tokio-rs/tracing/pulls/913
[#941]: https://github.com/tokio-rs/tracing/pulls/941
[#953]: https://github.com/tokio-rs/tracing/pulls/953
[#981]: https://github.com/tokio-rs/tracing/pulls/981
# 0.2.4 (April 21, 2020)

### Fixed
Expand Down
8 changes: 4 additions & 4 deletions tracing-futures/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,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.2.3
[crates-url]: https://crates.io/crates/tracing-futures/0.2.5
[docs-badge]: https://docs.rs/tracing-futures/badge.svg
[docs-url]: https://docs.rs/tracing-futures/0.2.3/tracing_futures
[docs-url]: https://docs.rs/tracing-futures/0.2.5/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
Expand All @@ -45,8 +45,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.2.3/tracing_futures/trait.Instrument.html
[`WithSubscriber`]: https://docs.rs/tracing-futures/0.2.3/tracing_futures/trait.WithSubscriber.html
[`Instrument`]: https://docs.rs/tracing-futures/0.2.5/tracing_futures/trait.Instrument.html
[`WithSubscriber`]: https://docs.rs/tracing-futures/0.2.5/tracing_futures/trait.WithSubscriber.html
[span]: https://docs.rs/tracing/latest/tracing/span/index.html
[`Subscriber`]: https://docs.rs/tracing/latest/tracing/subscriber/index.html
[`tracing`]: https://crates.io/crates/tracing
Expand Down
2 changes: 1 addition & 1 deletion tracing-futures/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@
//!
//! ```toml
//! [dependencies]
//! tracing-futures = { version = "0.2.3", default-features = false }
//! tracing-futures = { version = "0.2.5", default-features = false }
//! ```
//!
//! The `tokio`, `std-future` and `std` features are enabled by default.
Expand Down

0 comments on commit cb5a4de

Please sign in to comment.