Skip to content

Commit 2282191

Browse files
authored
Merge pull request #660 from rust-lang/cargo/0.4.24
Prepare for 0.4.24 release
2 parents 5fcb50e + 2994f0a commit 2282191

File tree

3 files changed

+13
-4
lines changed

3 files changed

+13
-4
lines changed

CHANGELOG.md

+11-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,15 @@
22

33
## [Unreleased]
44

5-
## [0.4.23] - 2025-01-10
5+
## [0.4.24] - 2025-01-11
6+
7+
## What's Changed
8+
* Fix up kv feature activation by @KodrAus in https://github.com/rust-lang/log/pull/659
9+
10+
11+
**Full Changelog**: https://github.com/rust-lang/log/compare/0.4.23...0.4.24
12+
13+
## [0.4.23] - 2025-01-10 (yanked)
614

715
## What's Changed
816
* Fix some typos by @Kleinmarb in https://github.com/rust-lang/log/pull/637
@@ -322,7 +330,8 @@ version using log 0.4.x to avoid losing module and file information.
322330

323331
Look at the [release tags] for information about older releases.
324332

325-
[Unreleased]: https://github.com/rust-lang-nursery/log/compare/0.4.23...HEAD
333+
[Unreleased]: https://github.com/rust-lang-nursery/log/compare/0.4.24...HEAD
334+
[0.4.24]: https://github.com/rust-lang/log/compare/0.4.23...0.4.24
326335
[0.4.23]: https://github.com/rust-lang/log/compare/0.4.22...0.4.23
327336
[0.4.22]: https://github.com/rust-lang/log/compare/0.4.21...0.4.22
328337
[0.4.21]: https://github.com/rust-lang/log/compare/0.4.20...0.4.21

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22

33
name = "log"
4-
version = "0.4.23" # remember to update html_root_url
4+
version = "0.4.24" # 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

+1-1
Original file line numberDiff line numberDiff line change
@@ -342,7 +342,7 @@
342342
#![doc(
343343
html_logo_url = "https://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png",
344344
html_favicon_url = "https://www.rust-lang.org/favicon.ico",
345-
html_root_url = "https://docs.rs/log/0.4.23"
345+
html_root_url = "https://docs.rs/log/0.4.24"
346346
)]
347347
#![warn(missing_docs)]
348348
#![deny(missing_debug_implementations, unconditional_recursion)]

0 commit comments

Comments
 (0)