Skip to content

Commit e65c78b

Browse files
authored
error: prepare to release v0.2.0 (#1681)
# 0.2.0 (October 23, 2021) This is a breaking change release in order to update the `tracing-subscriber` dependency version to [the v0.3.x release series][v03]. ### Changed - Updated `tracing-subscriber` dependency to [v0.3.0][v03] ([#1677]) ### Fixed - Disabled default features of the `tracing` dependency so that proc-macro dependencies are not enabled ([#1144]) - Documentation fixes and improvements ([#635], [#695]) ### Added - **SpanTrace**: Added `SpanTrace::new` constructor for constructing a `SpanTrace` from a `Span` passed as an argument (rather than capturing the current span) ([#1492]) Thanks to @CAD97 for contributing to this release! [v03]: https://github.com/tokio-rs/tracing/releases/tag/tracing-subscriber-0.3.0 [#635]: #635 [#695]: #695 [#1144]: #1144 [#1492]: #1492 [#1677]: #1677
1 parent 45fd4f9 commit e65c78b

File tree

4 files changed

+37
-7
lines changed

4 files changed

+37
-7
lines changed

tracing-error/CHANGELOG.md

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,33 @@
1+
# 0.2.0 (October 23, 2021)
2+
3+
This is a breaking change release in order to update the `tracing-subscriber`
4+
dependency 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+
22+
Thanks 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+
131
# 0.1.2 (March 3, 2020)
232

333
### Added

tracing-error/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ name = "tracing-error"
77
# - Cargo.toml
88
# - README.md
99
# - Update CHANGELOG.md.
10-
# - Create "v0.1.x" git tag
11-
version = "0.1.2"
10+
# - Create "v0.2.x" git tag
11+
version = "0.2.0"
1212
authors = [
1313
"Eliza Weisman <eliza@buoyant.io>",
1414
"Jane Lusby <jlusby@yaah.dev>",

tracing-error/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,9 @@ information.
1818
[Documentation (release)][docs-url] | [Documentation (master)][docs-master-url] | [Chat][discord-url]
1919

2020
[crates-badge]: https://img.shields.io/crates/v/tracing-error.svg
21-
[crates-url]: https://crates.io/crates/tracing-error/0.1.2
21+
[crates-url]: https://crates.io/crates/tracing-error/0.2.0
2222
[docs-badge]: https://docs.rs/tracing-error/badge.svg
23-
[docs-url]: https://docs.rs/tracing-error/0.1.2/tracing_error
23+
[docs-url]: https://docs.rs/tracing-error/0.2.0/tracing_error
2424
[docs-master-badge]: https://img.shields.io/badge/docs-master-blue
2525
[docs-master-url]: https://tracing-rs.netlify.com/tracing_error
2626
[mit-badge]: https://img.shields.io/badge/license-MIT-blue.svg
@@ -234,5 +234,5 @@ terms or conditions.
234234
[subscriber layer]: https://docs.rs/tracing-subscriber/latest/tracing_subscriber/layer/trait.Layer.html
235235
[`tracing`]: https://docs.rs/tracing
236236
[`std::error::Error`]: https://doc.rust-lang.org/stable/std/error/trait.Error.html
237-
[`SpanTrace`]: https://docs.rs/tracing-error/0.1.2/tracing_error/struct.SpanTrace.html
238-
[`ErrorLayer`]: https://docs.rs/tracing-error/0.1.2/tracing_error/struct.ErrorLayer.html
237+
[`SpanTrace`]: https://docs.rs/tracing-error/0.2.0/tracing_error/struct.SpanTrace.html
238+
[`ErrorLayer`]: https://docs.rs/tracing-error/0.2.0/tracing_error/struct.ErrorLayer.html

tracing-error/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,7 @@
186186
//! long as doing so complies with this policy.
187187
//!
188188
#![cfg_attr(docsrs, feature(doc_cfg), deny(rustdoc::broken_intra_doc_links))]
189-
#![doc(html_root_url = "https://docs.rs/tracing-error/0.1.2")]
189+
#![doc(html_root_url = "https://docs.rs/tracing-error/0.2.0")]
190190
#![doc(
191191
html_logo_url = "https://raw.githubusercontent.com/tokio-rs/tracing/master/assets/logo-type.png",
192192
issue_tracker_base_url = "https://github.com/tokio-rs/tracing/issues/"

0 commit comments

Comments
 (0)