Skip to content

Commit cef3cca

Browse files
hawkwkaffarell
authored andcommitted
core: prepare to release 0.1.21 (tokio-rs#1610)
# 0.1.21 (October 1, 2021) This release adds support for recording `Option<T> where T: Value` as typed `tracing` field values. ### Added - **field**: `Value` impl for `Option<T> where T: Value` ([tokio-rs#1585]) ### Fixed - Fixed deprecation warnings when building with `default-features` disabled ([tokio-rs#1603], [tokio-rs#1606]) - Documentation fixes and improvements ([tokio-rs#1595], [tokio-rs#1601]) Thanks to @BrianBurgers, @DCjanus, and @matklad for contributing to this release! [tokio-rs#1585]: tokio-rs#1585 [tokio-rs#1595]: tokio-rs#1595 [tokio-rs#1601]: tokio-rs#1601 [tokio-rs#1603]: tokio-rs#1603 [tokio-rs#1606]: tokio-rs#1606
1 parent a8418e9 commit cef3cca

File tree

2 files changed

+27
-3
lines changed

2 files changed

+27
-3
lines changed

tracing-core/CHANGELOG.md

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,27 @@
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+
125
# 0.1.20 (September 12, 2021)
226

327
This release adds support for `f64` as one of the `tracing-core`

tracing-core/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,9 @@ Core primitives for application-level tracing.
1616
[Documentation][docs-url] | [Chat][discord-url]
1717

1818
[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
2020
[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
2222
[docs-master-badge]: https://img.shields.io/badge/docs-master-blue
2323
[docs-master-url]: https://tracing-rs.netlify.com/tracing_core
2424
[mit-badge]: https://img.shields.io/badge/license-MIT-blue.svg
@@ -79,7 +79,7 @@ The following crate feature flags are available:
7979

8080
```toml
8181
[dependencies]
82-
tracing-core = { version = "0.1.20", default-features = false }
82+
tracing-core = { version = "0.1.21", default-features = false }
8383
```
8484

8585
**Note**:`tracing-core`'s `no_std` support requires `liballoc`.

0 commit comments

Comments
 (0)