Skip to content

Commit 5068293

Browse files
committed
prepare for 0.4.30 release
1 parent 7ccd873 commit 5068293

3 files changed

Lines changed: 18 additions & 6 deletions

File tree

CHANGELOG.md

Lines changed: 16 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,21 +2,32 @@
22

33
## [Unreleased]
44

5+
## [0.4.30] - 2026-05-21
6+
7+
### What's Changed
8+
* Support capturing of `std::net` types by @KodrAus in https://github.com/rust-lang/log/pull/724
9+
10+
### New Contributors
11+
* @V0ldek made their first contribution in https://github.com/rust-lang/log/pull/720
12+
* @woodruffw made their first contribution in https://github.com/rust-lang/log/pull/723
13+
14+
**Full Changelog**: https://github.com/rust-lang/log/compare/0.4.29...0.4.30
15+
516
## [0.4.29] - 2025-12-02
617

7-
## What's Changed
18+
### What's Changed
819
* perf: reduce llvm-lines of FromStr for `Level` and `LevelFilter` by @dishmaker in https://github.com/rust-lang/log/pull/709
920
* Replace serde with serde_core by @Thomasdezeeuw in https://github.com/rust-lang/log/pull/712
1021

11-
## New Contributors
22+
### New Contributors
1223
* @AldaronLau made their first contribution in https://github.com/rust-lang/log/pull/703
1324
* @dishmaker made their first contribution in https://github.com/rust-lang/log/pull/709
1425

1526
**Full Changelog**: https://github.com/rust-lang/log/compare/0.4.28...0.4.29
1627

1728
## [0.4.28] - 2025-09-02
1829

19-
## What's Changed
30+
### What's Changed
2031
* ci: drop really old trick and ensure MSRV for all feature combo by @tisonkun in https://github.com/rust-lang/log/pull/676
2132
* Chore: delete compare_exchange method for AtomicUsize on platforms without atomics by @HaoliangXu in https://github.com/rust-lang/log/pull/690
2233
* Add `increment_severity()` and `decrement_severity()` methods for `Level` and `LevelFilter` by @nebkor in https://github.com/rust-lang/log/pull/692
@@ -389,7 +400,8 @@ version using log 0.4.x to avoid losing module and file information.
389400

390401
Look at the [release tags] for information about older releases.
391402

392-
[Unreleased]: https://github.com/rust-lang-nursery/log/compare/0.4.29...HEAD
403+
[Unreleased]: https://github.com/rust-lang-nursery/log/compare/0.4.30...HEAD
404+
[0.4.30]: https://github.com/rust-lang/log/compare/0.4.29...0.4.30
393405
[0.4.29]: https://github.com/rust-lang/log/compare/0.4.28...0.4.29
394406
[0.4.28]: https://github.com/rust-lang/log/compare/0.4.27...0.4.28
395407
[0.4.27]: https://github.com/rust-lang/log/compare/0.4.26...0.4.27

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

0 commit comments

Comments
 (0)