From 6a24abf0835cef62e3d882287c97307dd3ecb403 Mon Sep 17 00:00:00 2001 From: Ashley Date: Sat, 20 Jun 2026 15:12:38 +1000 Subject: [PATCH] prepare for 0.4.33 release --- CHANGELOG.md | 13 ++++++++++++- Cargo.toml | 2 +- src/lib.rs | 2 +- 3 files changed, 14 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 80db3c8a6..a327971eb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,15 @@ # Change Log +## [0.4.33] - 2026-06-20 + +## What's Changed +* Fixed key comparison by @matteo-zeggiotti-ok in https://github.com/rust-lang/log/pull/732 + +## New Contributors +* @matteo-zeggiotti-ok made their first contribution in https://github.com/rust-lang/log/pull/732 + +**Full Changelog**: https://github.com/rust-lang/log/compare/0.4.32...0.4.33 + ## [0.4.32] - 2026-06-04 ### What's Changed @@ -418,7 +428,8 @@ 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.32...HEAD +[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 [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 70a254493..3dd2487df 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "log" -version = "0.4.32" # remember to update html_root_url +version = "0.4.33" # 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 9b5317a22..41c5d5f3d 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -348,7 +348,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.32" + html_root_url = "https://docs.rs/log/0.4.33" )] #![warn(missing_docs)] #![deny(missing_debug_implementations, unconditional_recursion)]