Skip to content

Commit a5b5b21

Browse files
authored
Merge pull request #730 from rust-lang/cargo/0.4.32
Prepare for 0.4.32 release
2 parents ce6cd9f + c8d3b12 commit a5b5b21

3 files changed

Lines changed: 13 additions & 7 deletions

File tree

CHANGELOG.md

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

3+
## [0.4.32] - 2026-06-04
4+
5+
### What's Changed
6+
* Support `Value` -> string conversions with `kv` + `std` features instead of `kv_std` by @tisonkun in https://github.com/rust-lang/log/pull/729
7+
8+
**Full Changelog**: https://github.com/rust-lang/log/compare/0.4.31...0.4.32
9+
310
## [0.4.31] - 2026-06-02
411

5-
## What's Changed
12+
### What's Changed
613
* Leverage static str key when possible by @tisonkun in https://github.com/rust-lang/log/pull/727
714

8-
## New Contributors
15+
### New Contributors
916
* @Isvane made their first contribution in https://github.com/rust-lang/log/pull/726
1017

1118
**Full Changelog**: https://github.com/rust-lang/log/compare/0.4.30...0.4.31
1219

13-
## [Unreleased]
14-
1520
## [0.4.30] - 2026-05-21
1621

1722
### What's Changed
@@ -413,7 +418,8 @@ version using log 0.4.x to avoid losing module and file information.
413418

414419
Look at the [release tags] for information about older releases.
415420

416-
[Unreleased]: https://github.com/rust-lang-nursery/log/compare/0.4.31...HEAD
421+
[Unreleased]: https://github.com/rust-lang-nursery/log/compare/0.4.32...HEAD
422+
[0.4.32]: https://github.com/rust-lang/log/compare/0.4.31...0.4.32
417423
[0.4.31]: https://github.com/rust-lang/log/compare/0.4.30...0.4.31
418424
[0.4.30]: https://github.com/rust-lang/log/compare/0.4.29...0.4.30
419425
[0.4.29]: https://github.com/rust-lang/log/compare/0.4.28...0.4.29

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.31" # remember to update html_root_url
4+
version = "0.4.32" # 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.31"
351+
html_root_url = "https://docs.rs/log/0.4.32"
352352
)]
353353
#![warn(missing_docs)]
354354
#![deny(missing_debug_implementations, unconditional_recursion)]

0 commit comments

Comments
 (0)