Skip to content

Commit 86d739f

Browse files
committed
prepare for 0.4.31 release
1 parent c906cfb commit 86d739f

3 files changed

Lines changed: 14 additions & 3 deletions

File tree

CHANGELOG.md

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,15 @@
11
# Change Log
22

3+
## [0.4.31] - 2026-06-02
4+
5+
## What's Changed
6+
* Leverage static str key when possible by @tisonkun in https://github.com/rust-lang/log/pull/727
7+
8+
## New Contributors
9+
* @Isvane made their first contribution in https://github.com/rust-lang/log/pull/726
10+
11+
**Full Changelog**: https://github.com/rust-lang/log/compare/0.4.30...0.4.31
12+
313
## [Unreleased]
414

515
## [0.4.30] - 2026-05-21
@@ -403,7 +413,8 @@ version using log 0.4.x to avoid losing module and file information.
403413

404414
Look at the [release tags] for information about older releases.
405415

406-
[Unreleased]: https://github.com/rust-lang-nursery/log/compare/0.4.30...HEAD
416+
[Unreleased]: https://github.com/rust-lang-nursery/log/compare/0.4.31...HEAD
417+
[0.4.31]: https://github.com/rust-lang/log/compare/0.4.30...0.4.31
407418
[0.4.30]: https://github.com/rust-lang/log/compare/0.4.29...0.4.30
408419
[0.4.29]: https://github.com/rust-lang/log/compare/0.4.28...0.4.29
409420
[0.4.28]: https://github.com/rust-lang/log/compare/0.4.27...0.4.28

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22

33
name = "log"
4-
version = "0.4.30" # remember to update html_root_url
4+
version = "0.4.31" # remember to update html_root_url
55
authors = ["The Rust Project Developers"]
66
license = "MIT OR Apache-2.0"
77
readme = "README.md"

src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -348,7 +348,7 @@
348348
#![doc(
349349
html_logo_url = "https://prev.rust-lang.org/logos/rust-logo-128x128-blk-v2.png",
350350
html_favicon_url = "https://prev.rust-lang.org/favicon.ico",
351-
html_root_url = "https://docs.rs/log/0.4.30"
351+
html_root_url = "https://docs.rs/log/0.4.31"
352352
)]
353353
#![warn(missing_docs)]
354354
#![deny(missing_debug_implementations, unconditional_recursion)]

0 commit comments

Comments
 (0)