Skip to content

Commit b0aa8ec

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

3 files changed

Lines changed: 22 additions & 3 deletions

File tree

CHANGELOG.md

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

33
## [Unreleased]
44

5+
## [0.4.29] - 2025-12-02
6+
7+
## What's Changed
8+
* docs: Add missing impls from README.md by @AldaronLau in https://github.com/rust-lang/log/pull/703
9+
* Point to new URLs for favicon and logo by @AldaronLau in https://github.com/rust-lang/log/pull/704
10+
* perf: reduce llvm-lines of FromStr for `Level` and `LevelFilter` by @dishmaker in https://github.com/rust-lang/log/pull/709
11+
* Replace serde with serde_core by @Thomasdezeeuw in https://github.com/rust-lang/log/pull/712
12+
* Fix clippy lints by @Thomasdezeeuw in https://github.com/rust-lang/log/pull/713
13+
* Use GitHub Actions to install Rust and cargo-hack by @Thomasdezeeuw in https://github.com/rust-lang/log/pull/715
14+
* Exclude old unstable_kv features from testing matrix by @Thomasdezeeuw in https://github.com/rust-lang/log/pull/716
15+
* Fix up CI by @KodrAus in https://github.com/rust-lang/log/pull/718
16+
17+
## New Contributors
18+
* @AldaronLau made their first contribution in https://github.com/rust-lang/log/pull/703
19+
* @dishmaker made their first contribution in https://github.com/rust-lang/log/pull/709
20+
21+
**Full Changelog**: https://github.com/rust-lang/log/compare/0.4.28...0.4.29
22+
523
## [0.4.28] - 2025-09-02
624

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

378396
Look at the [release tags] for information about older releases.
379397

380-
[Unreleased]: https://github.com/rust-lang-nursery/log/compare/0.4.28...HEAD
398+
[Unreleased]: https://github.com/rust-lang-nursery/log/compare/0.4.29...HEAD
399+
[0.4.29]: https://github.com/rust-lang/log/compare/0.4.28...0.4.29
381400
[0.4.28]: https://github.com/rust-lang/log/compare/0.4.27...0.4.28
382401
[0.4.27]: https://github.com/rust-lang/log/compare/0.4.26...0.4.27
383402
[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)