From f4027f17cf05e82b1a1be61f63824c2a98e041aa Mon Sep 17 00:00:00 2001 From: Hayden Stainsby Date: Sat, 23 Nov 2024 23:28:42 +0100 Subject: [PATCH] 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 - 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]) [#2767]: https://github.com/tokio-rs/tracing/pull/2767 [#2820]: https://github.com/tokio-rs/tracing/pull/2820 [#2838]: https://github.com/tokio-rs/tracing/pull/2838 [#2938]: https://github.com/tokio-rs/tracing/pull/2938 [#2954]: https://github.com/tokio-rs/tracing/pull/2954 [#3002]: https://github.com/tokio-rs/tracing/pull/3002 [#3024]: https://github.com/tokio-rs/tracing/pull/3024 --- tracing-core/CHANGELOG.md | 29 +++++++++++++++++++++++++++++ tracing-core/Cargo.toml | 2 +- 2 files changed, 30 insertions(+), 1 deletion(-) diff --git a/tracing-core/CHANGELOG.md b/tracing-core/CHANGELOG.md index 2e92f74fb4..9d879ce305 100644 --- a/tracing-core/CHANGELOG.md +++ b/tracing-core/CHANGELOG.md @@ -1,3 +1,32 @@ +# 0.1.33 (November 25, 2024) + +### Added + +- Add index API for `Field` ([#2820]) +- allow `&[u8]` to be recorded as event/span field ([#2954]) + +### Changed + +- 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]) + +[#2767]: https://github.com/tokio-rs/tracing/pull/2767 +[#2820]: https://github.com/tokio-rs/tracing/pull/2820 +[#2838]: https://github.com/tokio-rs/tracing/pull/2838 +[#2938]: https://github.com/tokio-rs/tracing/pull/2938 +[#2954]: https://github.com/tokio-rs/tracing/pull/2954 +[#3002]: https://github.com/tokio-rs/tracing/pull/3002 +[#3024]: https://github.com/tokio-rs/tracing/pull/3024 + # 0.1.32 (October 13, 2023) ### Documented diff --git a/tracing-core/Cargo.toml b/tracing-core/Cargo.toml index ee34231a89..b99a70bb0c 100644 --- a/tracing-core/Cargo.toml +++ b/tracing-core/Cargo.toml @@ -8,7 +8,7 @@ name = "tracing-core" # - README.md # - Update CHANGELOG.md. # - Create "v0.1.x" git tag. -version = "0.1.32" +version = "0.1.33" authors = ["Tokio Contributors "] license = "MIT" readme = "README.md"