File tree Expand file tree Collapse file tree 2 files changed +27
-3
lines changed Expand file tree Collapse file tree 2 files changed +27
-3
lines changed Original file line number Diff line number Diff line change
1
+ # 0.1.21 (October 1, 2021)
2
+
3
+ This release adds support for recording ` Option<T> where T: Value ` as typed
4
+ ` tracing ` field values.
5
+
6
+ ### Added
7
+
8
+ - ** field** : ` Value ` impl for ` Option<T> where T: Value ` ([ #1585 ] )
9
+
10
+ ### Fixed
11
+
12
+ - Fixed deprecation warnings when building with ` default-features ` disabled
13
+ ([ #1603 ] , [ #1606 ] )
14
+ - Documentation fixes and improvements ([ #1595 ] , [ #1601 ] )
15
+
16
+ Thanks to @brianburgers , @DCjanus , and @matklad for contributing to this
17
+ release!
18
+
19
+ [ #1585 ] : https://github.com/tokio-rs/tracing/pull/1585
20
+ [ #1595 ] : https://github.com/tokio-rs/tracing/pull/1595
21
+ [ #1601 ] : https://github.com/tokio-rs/tracing/pull/1601
22
+ [ #1603 ] : https://github.com/tokio-rs/tracing/pull/1603
23
+ [ #1606 ] : https://github.com/tokio-rs/tracing/pull/1606
24
+
1
25
# 0.1.20 (September 12, 2021)
2
26
3
27
This release adds support for ` f64 ` as one of the ` tracing-core `
Original file line number Diff line number Diff line change @@ -16,9 +16,9 @@ Core primitives for application-level tracing.
16
16
[ Documentation] [ docs-url ] | [ Chat] [ discord-url ]
17
17
18
18
[ crates-badge ] : https://img.shields.io/crates/v/tracing-core.svg
19
- [ crates-url ] : https://crates.io/crates/tracing-core/0.1.20
19
+ [ crates-url ] : https://crates.io/crates/tracing-core/0.1.21
20
20
[ docs-badge ] : https://docs.rs/tracing-core/badge.svg
21
- [ docs-url ] : https://docs.rs/tracing-core/0.1.20
21
+ [ docs-url ] : https://docs.rs/tracing-core/0.1.21
22
22
[ docs-master-badge ] : https://img.shields.io/badge/docs-master-blue
23
23
[ docs-master-url ] : https://tracing-rs.netlify.com/tracing_core
24
24
[ mit-badge ] : https://img.shields.io/badge/license-MIT-blue.svg
@@ -79,7 +79,7 @@ The following crate feature flags are available:
79
79
80
80
``` toml
81
81
[dependencies ]
82
- tracing-core = { version = " 0.1.20 " , default-features = false }
82
+ tracing-core = { version = " 0.1.21 " , default-features = false }
83
83
```
84
84
85
85
** Note** :` tracing-core ` 's ` no_std ` support requires ` liballoc ` .
You can’t perform that action at this time.
0 commit comments