• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1# 0.2.0 (October 23, 2021)
2
3This is a breaking change release in order to update the `tracing-subscriber`
4dependency version to [the v0.3.x release series][v03].
5
6### Changed
7
8- Updated `tracing-subscriber` dependency to [v0.3.0][v03] ([#1677])
9
10### Fixed
11
12- Disabled default features of the `tracing` dependency so that proc-macro
13  dependencies are not enabled ([#1144])
14- Documentation fixes and improvements ([#635], [#695])
15
16### Added
17
18- **SpanTrace**: Added `SpanTrace::new` constructor for constructing a
19  `SpanTrace` from a `Span` passed as an argument (rather than capturing the
20  current span) ([#1492])
21
22Thanks to @CAD97 for contributing to this release!
23
24[v03]: https://github.com/tokio-rs/tracing/releases/tag/tracing-subscriber-0.3.0
25[#635]: https://github.com/tokio-rs/tracing/pull/635
26[#695]: https://github.com/tokio-rs/tracing/pull/695
27[#1144]: https://github.com/tokio-rs/tracing/pull/1144
28[#1492]: https://github.com/tokio-rs/tracing/pull/1492
29[#1677]: https://github.com/tokio-rs/tracing/pull/1677
30
31# 0.1.2 (March 3, 2020)
32
33### Added
34
35- **TracedError**: `TracedError`, an error type wrapper that annotates an error
36  with the current span.
37- **SpanTrace**:`SpanTrace::status` method and `SpanTraceStatus` type for
38  determing whether a `SpanTrace` was successfully captured (#614)
39
40### Changed
41
42- **SpanTrace**: Made backtrace formatting more consistent with upstream changes
43  to `std::backtrace` (#584)
44
45# 0.1.1 (February 5, 2020)
46
47### Fixed
48
49- Fixed a typo in the crate description
50
51### Changed
52
53- the maintenance badge from active to experimental
54
55# 0.1.0 (February 5, 2020)
56
57- Initial release
58