Skip to content

Commit 5aba0c2

Browse files
committed
prepare for 0.4.26 release
1 parent 0551261 commit 5aba0c2

File tree

3 files changed

+13
-3
lines changed

3 files changed

+13
-3
lines changed

CHANGELOG.md

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,15 @@
22

33
## [Unreleased]
44

5+
## [0.4.26] - 2025-02-18
6+
7+
## What's Changed
8+
* Derive `Clone` for `kv::Value` by @SpriteOvO in https://github.com/rust-lang/log/pull/668
9+
* Add `spdlog-rs` link to crate doc by @SpriteOvO in https://github.com/rust-lang/log/pull/669
10+
11+
12+
**Full Changelog**: https://github.com/rust-lang/log/compare/0.4.25...0.4.26
13+
514
## [0.4.25] - 2025-01-14
615

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

339348
Look at the [release tags] for information about older releases.
340349

341-
[Unreleased]: https://github.com/rust-lang-nursery/log/compare/0.4.25...HEAD
350+
[Unreleased]: https://github.com/rust-lang-nursery/log/compare/0.4.26...HEAD
351+
[0.4.26]: https://github.com/rust-lang/log/compare/0.4.25...0.4.26
342352
[0.4.25]: https://github.com/rust-lang/log/compare/0.4.24...0.4.25
343353
[0.4.24]: https://github.com/rust-lang/log/compare/0.4.23...0.4.24
344354
[0.4.23]: https://github.com/rust-lang/log/compare/0.4.22...0.4.23

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.25" # remember to update html_root_url
4+
version = "0.4.26" # 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
@@ -344,7 +344,7 @@
344344
#![doc(
345345
html_logo_url = "https://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png",
346346
html_favicon_url = "https://www.rust-lang.org/favicon.ico",
347-
html_root_url = "https://docs.rs/log/0.4.25"
347+
html_root_url = "https://docs.rs/log/0.4.26"
348348
)]
349349
#![warn(missing_docs)]
350350
#![deny(missing_debug_implementations, unconditional_recursion)]

0 commit comments

Comments
 (0)