Skip to content

Commit e1c3b14

Browse files
committed
futures: prepare to release 0.2.5
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
1 parent e1e3431 commit e1c3b14

File tree

4 files changed

+24
-7
lines changed

4 files changed

+24
-7
lines changed

tracing-futures/CHANGELOG.md

+17
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,20 @@
1+
# 0.2.5 (February 16, 2021)
2+
3+
### Changed
4+
5+
- Updated `pin-project` dependency to 1.0 ([#1038])
6+
7+
### Fixed
8+
9+
- Several documentation fixes and improvements ([#832], [#911], [#913], [#941],
10+
[#953], [#981])
11+
12+
[#1038]: https://github.com/tokio-rs/tracing/pulls/1038
13+
[#832]: https://github.com/tokio-rs/tracing/pulls/832
14+
[#911]: https://github.com/tokio-rs/tracing/pulls/911
15+
[#913]: https://github.com/tokio-rs/tracing/pulls/913
16+
[#941]: https://github.com/tokio-rs/tracing/pulls/941
17+
118
# 0.2.4 (April 21, 2020)
219

320
### Fixed

tracing-futures/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "tracing-futures"
3-
version = "0.2.6"
3+
version = "0.2.5"
44
authors = ["Eliza Weisman <[email protected]>", "Tokio Contributors <[email protected]>"]
55
edition = "2018"
66
repository = "https://github.com/tokio-rs/tracing"

tracing-futures/README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,9 @@ Utilities for instrumenting futures-based code with [`tracing`].
1717
[Documentation][docs-url] | [Chat][discord-url]
1818

1919
[crates-badge]: https://img.shields.io/crates/v/tracing-futures.svg
20-
[crates-url]: https://crates.io/crates/tracing-futures/0.2.3
20+
[crates-url]: https://crates.io/crates/tracing-futures/0.2.5
2121
[docs-badge]: https://docs.rs/tracing-futures/badge.svg
22-
[docs-url]: https://docs.rs/tracing-futures/0.2.3/tracing_futures
22+
[docs-url]: https://docs.rs/tracing-futures/0.2.5/tracing_futures
2323
[docs-master-badge]: https://img.shields.io/badge/docs-master-blue
2424
[docs-master-url]: https://tracing-rs.netlify.com/tracing_futures
2525
[mit-badge]: https://img.shields.io/badge/license-MIT-blue.svg
@@ -45,8 +45,8 @@ The crate provides the following traits:
4545
* [`WithSubscriber`] allows a `tracing` [`Subscriber`] to be attached to a
4646
future, sink, stream, or executor.
4747

48-
[`Instrument`]: https://docs.rs/tracing-futures/0.2.3/tracing_futures/trait.Instrument.html
49-
[`WithSubscriber`]: https://docs.rs/tracing-futures/0.2.3/tracing_futures/trait.WithSubscriber.html
48+
[`Instrument`]: https://docs.rs/tracing-futures/0.2.5/tracing_futures/trait.Instrument.html
49+
[`WithSubscriber`]: https://docs.rs/tracing-futures/0.2.5/tracing_futures/trait.WithSubscriber.html
5050
[span]: https://docs.rs/tracing/latest/tracing/span/index.html
5151
[`Subscriber`]: https://docs.rs/tracing/latest/tracing/subscriber/index.html
5252
[`tracing`]: https://crates.io/tracing

tracing-futures/src/lib.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@
4747
//!
4848
//! ```toml
4949
//! [dependencies]
50-
//! tracing-futures = { version = "0.2.3", default-features = false }
50+
//! tracing-futures = { version = "0.2.5", default-features = false }
5151
//! ```
5252
//!
5353
//! The `tokio`, `std-future` and `std` features are enabled by default.
@@ -73,7 +73,7 @@
7373
//! supported compiler version is not considered a semver breaking change as
7474
//! long as doing so complies with this policy.
7575
//!
76-
#![doc(html_root_url = "https://docs.rs/tracing-futures/0.2.4")]
76+
#![doc(html_root_url = "https://docs.rs/tracing-futures/0.2.5")]
7777
#![doc(
7878
html_logo_url = "https://raw.githubusercontent.com/tokio-rs/tracing/master/assets/logo-type.png",
7979
issue_tracker_base_url = "https://github.com/tokio-rs/tracing/issues/"

0 commit comments

Comments
 (0)