• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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[#953]: https://github.com/tokio-rs/tracing/pulls/953
18[#981]: https://github.com/tokio-rs/tracing/pulls/981
19# 0.2.4 (April 21, 2020)
20
21### Fixed
22
23- docs.rs build failures (#618)
24- Spelling in documentation skins -> sinks (#643)
25
26# 0.2.3 (Feb 26, 2020)
27
28### Added
29
30- `WithDispatch::inner` and `WithDispatch::inner_mut` methods to allow borrowing
31  the wrapped type (#589)
32- `WithDispatch::with_dispatch` method, to propagate the subscriber to another
33  type (#589)
34- `inner_pin_ref` and `inner_pin_mut` methods to `Instrumented` and
35  `WithDispatch` to project to the inner future when pinned (#590)
36
37# 0.2.2 (Feb 14, 2020)
38
39### Added
40
41- Support for `futures` 0.3 `Stream`s and `Sink`s (#544)
42
43### Fixed
44
45- Compilation errors when using the `futures-03` feature (#576)
46
47Thanks to @obergner and @najamelan for their contributions to this release!
48
49# 0.2.1 (Jan 15, 2020)
50
51### Added
52
53- API documentation now shows which features are required by feature-flagged items (#523)
54- `no_std` support (#498)
55
56# 0.2.0 (Dec 3, 2019)
57
58### Changed
59
60- **Breaking Change**: the default `Future` implementation comes from the `std-future` feature.
61  Compatibility with futures v0.1 is available via the `futures-01` feature.
62
63# 0.1.1 (Oct 25, 2019)
64
65### Added
66
67- `Instrumented::inner` and `inner_mut` methods that expose access to the
68  instrumented future (#386)
69
70# 0.1.0 (Oct 8, 2019)
71
72- Initial release
73