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
+
1
19
# 0.17.0 (February 3, 2022)
2
20
3
21
### Breaking Changes
6
24
For list of breaking changes in OpenTelemetry, see the
7
25
[ v0.17.0 changelog] ( https://github.com/open-telemetry/opentelemetry-rust/blob/main/opentelemetry/CHANGELOG.md#v0170 ) .
8
26
9
- # 0.16.0 (October 23, 2021)
27
+ # 0.17.1 (October 23, 2021)
10
28
11
29
### Breaking Changes
12
30
@@ -29,9 +47,9 @@ Thanks to @LehMaxence for contributing to this release!
29
47
30
48
### Breaking Changes
31
49
32
- - Upgrade to ` v0.16.0 ` of ` opentelemetry ` (#1497 )
50
+ - Upgrade to ` v0.17.1 ` of ` opentelemetry ` (#1497 )
33
51
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 ) .
35
53
36
54
# 0.14.0 (July 9, 2021)
37
55
Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " tracing-opentelemetry"
3
- version = " 0.17.0 "
3
+ version = " 0.17.1 "
4
4
authors = [
5
5
" Julian Tescher <[email protected] >" ,
6
6
" Tokio Contributors <[email protected] >"
Original file line number Diff line number Diff line change @@ -17,9 +17,9 @@ Utilities for adding [OpenTelemetry] interoperability to [`tracing`].
17
17
[ Documentation] [ docs-url ] | [ Chat] [ discord-url ]
18
18
19
19
[ 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
21
21
[ 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
23
23
[ docs-master-badge ] : https://img.shields.io/badge/docs-master-blue
24
24
[ docs-master-url ] : https://tracing-rs.netlify.com/tracing_opentelemetry
25
25
[ mit-badge ] : https://img.shields.io/badge/license-MIT-blue.svg
Original file line number Diff line number Diff line change 92
92
//!
93
93
#![ deny( unreachable_pub) ]
94
94
#![ 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 " ) ]
96
96
#![ doc(
97
97
html_logo_url = "https://raw.githubusercontent.com/tokio-rs/tracing/master/assets/logo-type.png" ,
98
98
issue_tracker_base_url = "https://github.com/tokio-rs/tracing/issues/"
You can’t perform that action at this time.
0 commit comments