File tree Expand file tree Collapse file tree 4 files changed +25
-7
lines changed
Expand file tree Collapse file tree 4 files changed +25
-7
lines changed Original file line number Diff line number Diff line change 1+ # 0.17.1 (February 11, 2022)
2+
3+ ### Added
4+
5+ - ` OpenTelemetryLayer ` can now add detailed location information to
6+ forwarded events (defaults to on) ([ #1911 ] )
7+ - ` OpenTelemetryLayer::with_event_location ` to control whether source locations
8+ are recorded ([ #1911 ] )
9+ ### Changed
10+
11+ - Avoid unnecessary allocations to improve performance when recording events
12+ ([ #1917 ] )
13+
14+ Thanks to @djc for contributing to this release!
15+
16+ [ #1917 ] : https://github.com/tokio-rs/tracing/pull/1917
17+ [ #1911 ] : https://github.com/tokio-rs/tracing/pull/1911
18+
119# 0.17.0 (February 3, 2022)
220
321### Breaking Changes
624 For list of breaking changes in OpenTelemetry, see the
725 [ v0.17.0 changelog] ( https://github.com/open-telemetry/opentelemetry-rust/blob/main/opentelemetry/CHANGELOG.md#v0170 ) .
826
9- # 0.16.0 (October 23, 2021)
27+ # 0.17.1 (October 23, 2021)
1028
1129### Breaking Changes
1230
@@ -29,9 +47,9 @@ Thanks to @LehMaxence for contributing to this release!
2947
3048### Breaking Changes
3149
32- - Upgrade to ` v0.16.0 ` of ` opentelemetry ` (#1497 )
50+ - Upgrade to ` v0.17.1 ` of ` opentelemetry ` (#1497 )
3351 For list of breaking changes in OpenTelemetry, see the
34- [ v0.16.0 changelog] ( https://github.com/open-telemetry/opentelemetry-rust/blob/main/opentelemetry/CHANGELOG.md#v0160 ) .
52+ [ v0.17.1 changelog] ( https://github.com/open-telemetry/opentelemetry-rust/blob/main/opentelemetry/CHANGELOG.md#v0160 ) .
3553
3654# 0.14.0 (July 9, 2021)
3755
Original file line number Diff line number Diff line change 11[package ]
22name = " tracing-opentelemetry"
3- version = " 0.17.0 "
3+ version = " 0.17.1 "
44authors = [
55 " Julian Tescher <julian@tescher.me>" ,
66 " Tokio Contributors <team@tokio.rs>"
Original file line number Diff line number Diff line change @@ -17,9 +17,9 @@ Utilities for adding [OpenTelemetry] interoperability to [`tracing`].
1717[ Documentation] [ docs-url ] | [ Chat] [ discord-url ]
1818
1919[ crates-badge ] : https://img.shields.io/crates/v/tracing-opentelemetry.svg
20- [ crates-url ] : https://crates.io/crates/tracing-opentelemetry/0.16.0
20+ [ crates-url ] : https://crates.io/crates/tracing-opentelemetry/0.17.1
2121[ docs-badge ] : https://docs.rs/tracing-opentelemetry/badge.svg
22- [ docs-url ] : https://docs.rs/tracing-opentelemetry/0.16.0 /tracing_opentelemetry
22+ [ docs-url ] : https://docs.rs/tracing-opentelemetry/0.17.1 /tracing_opentelemetry
2323[ docs-master-badge ] : https://img.shields.io/badge/docs-master-blue
2424[ docs-master-url ] : https://tracing-rs.netlify.com/tracing_opentelemetry
2525[ mit-badge ] : https://img.shields.io/badge/license-MIT-blue.svg
Original file line number Diff line number Diff line change 9292//!
9393#![ deny( unreachable_pub) ]
9494#![ cfg_attr( test, deny( warnings) ) ]
95- #![ doc( html_root_url = "https://docs.rs/tracing-opentelemetry/0.16.0 " ) ]
95+ #![ doc( html_root_url = "https://docs.rs/tracing-opentelemetry/0.17.1 " ) ]
9696#![ doc(
9797 html_logo_url = "https://raw.githubusercontent.com/tokio-rs/tracing/master/assets/logo-type.png" ,
9898 issue_tracker_base_url = "https://github.com/tokio-rs/tracing/issues/"
You can’t perform that action at this time.
0 commit comments