Skip to content

Commit 9dd8a12

Browse files
committed
chore: prepare tracing-core 0.1.33
# 0.1.33 (November 25, 2024) ### Added - Add index API for `Field` ([#2820]) - allow `&[u8]` to be recorded as event/span field ([#2954]) ### Changed - Bump MSRV to 1.63 ([#2793]) - Use const `thread_local`s when possible ([#2838]) ### Fixed - Fix missed `register_callsite` error ([#2938]) - Do not add `valuable/std` feature as dependency unless `valuable` is used ([#3002]) - prefix macro calls with ::core to avoid clashing with local macros ([#3024]) ### Documented - Fix incorrect (incorrectly updated) docs for LevelFilter ([#2767]) Thanks to new contributor @maddiemort for contributing to this release! [#2767]: #2767 [#2793]: #2793 [#2820]: #2820 [#2838]: #2838 [#2938]: #2938 [#2954]: #2954 [#3002]: #3002 [#3024]: #3024
1 parent 8a25a16 commit 9dd8a12

File tree

3 files changed

+47
-14
lines changed

3 files changed

+47
-14
lines changed

tracing-core/CHANGELOG.md

+33
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,36 @@
1+
# 0.1.33 (November 25, 2024)
2+
3+
### Added
4+
5+
- Add index API for `Field` ([#2820])
6+
- allow `&[u8]` to be recorded as event/span field ([#2954])
7+
8+
### Changed
9+
10+
- Bump MSRV to 1.63 ([#2793])
11+
- Use const `thread_local`s when possible ([#2838])
12+
13+
### Fixed
14+
15+
- Fix missed `register_callsite` error ([#2938])
16+
- Do not add `valuable/std` feature as dependency unless `valuable` is used ([#3002])
17+
- prefix macro calls with ::core to avoid clashing with local macros ([#3024])
18+
19+
### Documented
20+
21+
- Fix incorrect (incorrectly updated) docs for LevelFilter ([#2767])
22+
23+
Thanks to new contributor @maddiemort for contributing to this release!
24+
25+
[#2767]: https://github.com/tokio-rs/tracing/pull/2767
26+
[#2793]: https://github.com/tokio-rs/tracing/pull/2793
27+
[#2820]: https://github.com/tokio-rs/tracing/pull/2820
28+
[#2838]: https://github.com/tokio-rs/tracing/pull/2838
29+
[#2938]: https://github.com/tokio-rs/tracing/pull/2938
30+
[#2954]: https://github.com/tokio-rs/tracing/pull/2954
31+
[#3002]: https://github.com/tokio-rs/tracing/pull/3002
32+
[#3024]: https://github.com/tokio-rs/tracing/pull/3024
33+
134
# 0.1.32 (October 13, 2023)
235

336
### Documented

tracing-core/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ name = "tracing-core"
88
# - README.md
99
# - Update CHANGELOG.md.
1010
# - Create "v0.1.x" git tag.
11-
version = "0.1.32"
11+
version = "0.1.33"
1212
authors = ["Tokio Contributors <[email protected]>"]
1313
license = "MIT"
1414
readme = "README.md"

tracing-core/README.md

+13-13
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.31
19+
[crates-url]: https://crates.io/crates/tracing-core/0.1.33
2020
[docs-badge]: https://docs.rs/tracing-core/badge.svg
21-
[docs-url]: https://docs.rs/tracing-core/0.1.31
21+
[docs-url]: https://docs.rs/tracing-core/0.1.33
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.31", default-features = false }
82+
tracing-core = { version = "0.1.33", 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.31/tracing_core/span/struct.Id.html
89-
[`Event`]: https://docs.rs/tracing-core/0.1.31/tracing_core/event/struct.Event.html
90-
[`Subscriber`]: https://docs.rs/tracing-core/0.1.31/tracing_core/subscriber/trait.Subscriber.html
91-
[`Metadata`]: https://docs.rs/tracing-core/0.1.31/tracing_core/metadata/struct.Metadata.html
92-
[`Callsite`]: https://docs.rs/tracing-core/0.1.31/tracing_core/callsite/trait.Callsite.html
93-
[`Field`]: https://docs.rs/tracing-core/0.1.31/tracing_core/field/struct.Field.html
94-
[`FieldSet`]: https://docs.rs/tracing-core/0.1.31/tracing_core/field/struct.FieldSet.html
95-
[`Value`]: https://docs.rs/tracing-core/0.1.31/tracing_core/field/trait.Value.html
96-
[`ValueSet`]: https://docs.rs/tracing-core/0.1.31/tracing_core/field/struct.ValueSet.html
97-
[`Dispatch`]: https://docs.rs/tracing-core/0.1.31/tracing_core/dispatcher/struct.Dispatch.html
88+
[`span::Id`]: https://docs.rs/tracing-core/0.1.33/tracing_core/span/struct.Id.html
89+
[`Event`]: https://docs.rs/tracing-core/0.1.33/tracing_core/event/struct.Event.html
90+
[`Subscriber`]: https://docs.rs/tracing-core/0.1.33/tracing_core/subscriber/trait.Subscriber.html
91+
[`Metadata`]: https://docs.rs/tracing-core/0.1.33/tracing_core/metadata/struct.Metadata.html
92+
[`Callsite`]: https://docs.rs/tracing-core/0.1.33/tracing_core/callsite/trait.Callsite.html
93+
[`Field`]: https://docs.rs/tracing-core/0.1.33/tracing_core/field/struct.Field.html
94+
[`FieldSet`]: https://docs.rs/tracing-core/0.1.33/tracing_core/field/struct.FieldSet.html
95+
[`Value`]: https://docs.rs/tracing-core/0.1.33/tracing_core/field/trait.Value.html
96+
[`ValueSet`]: https://docs.rs/tracing-core/0.1.33/tracing_core/field/struct.ValueSet.html
97+
[`Dispatch`]: https://docs.rs/tracing-core/0.1.33/tracing_core/dispatcher/struct.Dispatch.html
9898

9999
## Supported Rust Versions
100100

0 commit comments

Comments
 (0)