Skip to content

Commit 0279730

Browse files
committedJan 13, 2025·
prepare for 0.4.25 release
1 parent 4099bcb commit 0279730

File tree

3 files changed

+12
-3
lines changed

3 files changed

+12
-3
lines changed
 

‎CHANGELOG.md

+10-1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,14 @@
22

33
## [Unreleased]
44

5+
## [0.4.25] - 2025-01-14
6+
7+
## What's Changed
8+
* Revert loosening of kv cargo features by @KodrAus in https://github.com/rust-lang/log/pull/662
9+
10+
11+
**Full Changelog**: https://github.com/rust-lang/log/compare/0.4.24...0.4.25
12+
513
## [0.4.24] - 2025-01-11
614

715
## What's Changed
@@ -330,7 +338,8 @@ version using log 0.4.x to avoid losing module and file information.
330338

331339
Look at the [release tags] for information about older releases.
332340

333-
[Unreleased]: https://github.com/rust-lang-nursery/log/compare/0.4.24...HEAD
341+
[Unreleased]: https://github.com/rust-lang-nursery/log/compare/0.4.25...HEAD
342+
[0.4.25]: https://github.com/rust-lang/log/compare/0.4.24...0.4.25
334343
[0.4.24]: https://github.com/rust-lang/log/compare/0.4.23...0.4.24
335344
[0.4.23]: https://github.com/rust-lang/log/compare/0.4.22...0.4.23
336345
[0.4.22]: https://github.com/rust-lang/log/compare/0.4.21...0.4.22

‎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.24" # remember to update html_root_url
4+
version = "0.4.25" # 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.24"
345+
html_root_url = "https://docs.rs/log/0.4.25"
346346
)]
347347
#![warn(missing_docs)]
348348
#![deny(missing_debug_implementations, unconditional_recursion)]

0 commit comments

Comments
 (0)
Please sign in to comment.