Skip to content

Commit 3fe1a54

Browse files
committed
prepare for 0.4.29 release
1 parent 7a432d9 commit 3fe1a54

File tree

3 files changed

+16
-3
lines changed

3 files changed

+16
-3
lines changed

CHANGELOG.md

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

33
## [Unreleased]
44

5+
## [0.4.29] - 2025-12-02
6+
7+
## What's Changed
8+
* perf: reduce llvm-lines of FromStr for `Level` and `LevelFilter` by @dishmaker in https://github.com/rust-lang/log/pull/709
9+
* Replace serde with serde_core by @Thomasdezeeuw in https://github.com/rust-lang/log/pull/712
10+
11+
## New Contributors
12+
* @AldaronLau made their first contribution in https://github.com/rust-lang/log/pull/703
13+
* @dishmaker made their first contribution in https://github.com/rust-lang/log/pull/709
14+
15+
**Full Changelog**: https://github.com/rust-lang/log/compare/0.4.28...0.4.29
16+
517
## [0.4.28] - 2025-09-02
618

719
## What's Changed
@@ -377,7 +389,8 @@ version using log 0.4.x to avoid losing module and file information.
377389

378390
Look at the [release tags] for information about older releases.
379391

380-
[Unreleased]: https://github.com/rust-lang-nursery/log/compare/0.4.28...HEAD
392+
[Unreleased]: https://github.com/rust-lang-nursery/log/compare/0.4.29...HEAD
393+
[0.4.29]: https://github.com/rust-lang/log/compare/0.4.28...0.4.29
381394
[0.4.28]: https://github.com/rust-lang/log/compare/0.4.27...0.4.28
382395
[0.4.27]: https://github.com/rust-lang/log/compare/0.4.26...0.4.27
383396
[0.4.26]: https://github.com/rust-lang/log/compare/0.4.25...0.4.26

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

0 commit comments

Comments
 (0)