From 7d1e24e3506d4ffa1badf6c9ea357779877adaf0 Mon Sep 17 00:00:00 2001 From: Ashley Mannix Date: Sat, 22 Aug 2026 20:47:45 +1000 Subject: [PATCH] prepare for 0.4.34 release --- CHANGELOG.md | 17 +++++++++++++++-- Cargo.toml | 2 +- src/lib.rs | 2 +- 3 files changed, 17 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a327971eb..bbd5cd819 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,17 @@ # Change Log +## [0.4.34] - 2026-08-22 + +## What's Changed +* doc: Add context-logger utility to README by @alekseysidorov in https://github.com/rust-lang/log/pull/735 +* Add alloc support for boxed loggers by @malezjaa in https://github.com/rust-lang/log/pull/737 + +## New Contributors +* @alekseysidorov made their first contribution in https://github.com/rust-lang/log/pull/735 +* @malezjaa made their first contribution in https://github.com/rust-lang/log/pull/737 + +**Full Changelog**: https://github.com/rust-lang/log/compare/0.4.33...0.4.34 + ## [0.4.33] - 2026-06-20 ## What's Changed @@ -428,8 +440,9 @@ version using log 0.4.x to avoid losing module and file information. Look at the [release tags] for information about older releases. -[Unreleased]: https://github.com/rust-lang-nursery/log/compare/0.4.33...HEAD -[0.4.32]: https://github.com/rust-lang/log/compare/0.4.32...0.4.33 +[Unreleased]: https://github.com/rust-lang-nursery/log/compare/0.4.34...HEAD +[0.4.34]: https://github.com/rust-lang/log/compare/0.4.33...0.4.34 +[0.4.33]: https://github.com/rust-lang/log/compare/0.4.32...0.4.33 [0.4.32]: https://github.com/rust-lang/log/compare/0.4.31...0.4.32 [0.4.31]: https://github.com/rust-lang/log/compare/0.4.30...0.4.31 [0.4.30]: https://github.com/rust-lang/log/compare/0.4.29...0.4.30 diff --git a/Cargo.toml b/Cargo.toml index 4112ebb45..1cbac32c8 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "log" -version = "0.4.33" # remember to update html_root_url +version = "0.4.34" # remember to update html_root_url authors = ["The Rust Project Developers"] license = "MIT OR Apache-2.0" readme = "README.md" diff --git a/src/lib.rs b/src/lib.rs index 9d164e65a..a1ddbec70 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -353,7 +353,7 @@ #![doc( html_logo_url = "https://prev.rust-lang.org/logos/rust-logo-128x128-blk-v2.png", html_favicon_url = "https://prev.rust-lang.org/favicon.ico", - html_root_url = "https://docs.rs/log/0.4.33" + html_root_url = "https://docs.rs/log/0.4.34" )] #![warn(missing_docs)] #![deny(missing_debug_implementations, unconditional_recursion)]