Skip to content

Commit 0f8326b

Browse files
authored
core: prepare to release v0.1.22 (#1897)
# 0.1.22 (February 3, 2022) This release adds *experimental* support for recording structured field values using the [`valuable`] crate. See [this blog post][post] for details on `valuable`. Note that `valuable` support currently requires `--cfg tracing_unstable`. See the documentation for details. ### Added - **field**: Experimental support for recording field values using the [`valuable`] crate ([#1608], [#1888], [#1887]) - **field**: Added `ValueSet::record` method ([#1823]) - **subscriber**: `Default` impl for `NoSubscriber` ([#1785]) - **metadata**: New `Kind::HINT` to support the `enabled!` macro in `tracing` ([#1883], [#1891]) ### Fixed - Fixed a number of documentation issues ([#1665], [#1692], [#1737]) Thanks to @xd009642, @Skepfyr, @guswynn, @Folyd, and @mbergkvist for contributing to this release! [`valuable`]: https://crates.io/crates/valuable [post]: https://tokio.rs/blog/2021-05-valuable [#1608]: #1608 [#1888]: #1888 [#1887]: #1887 [#1823]: #1823 [#1785]: #1785 [#1883]: #1883 [#1891]: #1891 [#1665]: #1665 [#1692]: #1692 [#1737]: #1737
1 parent 789257e commit 0f8326b

File tree

3 files changed

+52
-15
lines changed

3 files changed

+52
-15
lines changed

tracing-core/CHANGELOG.md

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,40 @@
1+
# 0.1.22 (February 3, 2022)
2+
3+
This release adds *experimental* support for recording structured field values
4+
using the [`valuable`] crate. See [this blog post][post] for details on
5+
`valuable`.
6+
7+
Note that `valuable` support currently requires `--cfg tracing_unstable`. See
8+
the documentation for details.
9+
10+
### Added
11+
12+
- **field**: Experimental support for recording field values using the
13+
[`valuable`] crate ([#1608], [#1888], [#1887])
14+
- **field**: Added `ValueSet::record` method ([#1823])
15+
- **subscriber**: `Default` impl for `NoSubscriber` ([#1785])
16+
- **metadata**: New `Kind::HINT` to support the `enabled!` macro in `tracing`
17+
([#1883], [#1891])
18+
### Fixed
19+
20+
- Fixed a number of documentation issues ([#1665], [#1692], [#1737])
21+
22+
Thanks to @xd009642, @Skepfyr, @guswynn, @Folyd, and @mbergkvist for
23+
contributing to this release!
24+
25+
[`valuable`]: https://crates.io/crates/valuable
26+
[post]: https://tokio.rs/blog/2021-05-valuable
27+
[#1608]: https://github.com/tokio-rs/tracing/pull/1608
28+
[#1888]: https://github.com/tokio-rs/tracing/pull/1888
29+
[#1887]: https://github.com/tokio-rs/tracing/pull/1887
30+
[#1823]: https://github.com/tokio-rs/tracing/pull/1823
31+
[#1785]: https://github.com/tokio-rs/tracing/pull/1785
32+
[#1883]: https://github.com/tokio-rs/tracing/pull/1883
33+
[#1891]: https://github.com/tokio-rs/tracing/pull/1891
34+
[#1665]: https://github.com/tokio-rs/tracing/pull/1665
35+
[#1692]: https://github.com/tokio-rs/tracing/pull/1692
36+
[#1737]: https://github.com/tokio-rs/tracing/pull/1737
37+
138
# 0.1.21 (October 1, 2021)
239

340
This release adds support for recording `Option<T> where T: Value` as typed

tracing-core/README.md

Lines changed: 13 additions & 13 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.21
19+
[crates-url]: https://crates.io/crates/tracing-core/0.1.22
2020
[docs-badge]: https://docs.rs/tracing-core/badge.svg
21-
[docs-url]: https://docs.rs/tracing-core/0.1.21
21+
[docs-url]: https://docs.rs/tracing-core/0.1.22
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,22 +79,22 @@ The following crate feature flags are available:
7979

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

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

8787
[`tracing`]: ../tracing
88-
[`span::Id`]: https://docs.rs/tracing-core/0.1.21/tracing_core/span/struct.Id.html
89-
[`Event`]: https://docs.rs/tracing-core/0.1.21/tracing_core/event/struct.Event.html
90-
[`Subscriber`]: https://docs.rs/tracing-core/0.1.21/tracing_core/subscriber/trait.Subscriber.html
91-
[`Metadata`]: https://docs.rs/tracing-core/0.1.21/tracing_core/metadata/struct.Metadata.html
92-
[`Callsite`]: https://docs.rs/tracing-core/0.1.21/tracing_core/callsite/trait.Callsite.html
93-
[`Field`]: https://docs.rs/tracing-core/0.1.21/tracing_core/field/struct.Field.html
94-
[`FieldSet`]: https://docs.rs/tracing-core/0.1.21/tracing_core/field/struct.FieldSet.html
95-
[`Value`]: https://docs.rs/tracing-core/0.1.21/tracing_core/field/trait.Value.html
96-
[`ValueSet`]: https://docs.rs/tracing-core/0.1.21/tracing_core/field/struct.ValueSet.html
97-
[`Dispatch`]: https://docs.rs/tracing-core/0.1.21/tracing_core/dispatcher/struct.Dispatch.html
88+
[`span::Id`]: https://docs.rs/tracing-core/0.1.22/tracing_core/span/struct.Id.html
89+
[`Event`]: https://docs.rs/tracing-core/0.1.22/tracing_core/event/struct.Event.html
90+
[`Subscriber`]: https://docs.rs/tracing-core/0.1.22/tracing_core/subscriber/trait.Subscriber.html
91+
[`Metadata`]: https://docs.rs/tracing-core/0.1.22/tracing_core/metadata/struct.Metadata.html
92+
[`Callsite`]: https://docs.rs/tracing-core/0.1.22/tracing_core/callsite/trait.Callsite.html
93+
[`Field`]: https://docs.rs/tracing-core/0.1.22/tracing_core/field/struct.Field.html
94+
[`FieldSet`]: https://docs.rs/tracing-core/0.1.22/tracing_core/field/struct.FieldSet.html
95+
[`Value`]: https://docs.rs/tracing-core/0.1.22/tracing_core/field/trait.Value.html
96+
[`ValueSet`]: https://docs.rs/tracing-core/0.1.22/tracing_core/field/struct.ValueSet.html
97+
[`Dispatch`]: https://docs.rs/tracing-core/0.1.22/tracing_core/dispatcher/struct.Dispatch.html
9898

9999
## Supported Rust Versions
100100

tracing-core/src/lib.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@
5353
//!
5454
//! ```toml
5555
//! [dependencies]
56-
//! tracing-core = { version = "0.1.21", default-features = false }
56+
//! tracing-core = { version = "0.1.22", default-features = false }
5757
//! ```
5858
//!
5959
//! **Note**:`tracing-core`'s `no_std` support requires `liballoc`.
@@ -116,7 +116,7 @@
116116
//! [`Dispatch`]: dispatcher/struct.Dispatch.html
117117
//! [`tokio-rs/tracing`]: https://github.com/tokio-rs/tracing
118118
//! [`tracing`]: https://crates.io/crates/tracing
119-
#![doc(html_root_url = "https://docs.rs/tracing-core/0.1.21")]
119+
#![doc(html_root_url = "https://docs.rs/tracing-core/0.1.22")]
120120
#![doc(
121121
html_logo_url = "https://raw.githubusercontent.com/tokio-rs/tracing/master/assets/logo-type.png",
122122
issue_tracker_base_url = "https://github.com/tokio-rs/tracing/issues/"

0 commit comments

Comments
 (0)