Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 12 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -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"
Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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"

@Thomasdezeeuw Thomasdezeeuw Jun 20, 2026

Copy link
Copy Markdown
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Offtopic for this pr, but do we still need this?

View changes since the review

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I don't believe so. We can probably remove it next release 👍

)]
#![warn(missing_docs)]
#![deny(missing_debug_implementations, unconditional_recursion)]
Expand Down