Skip to content

Commit 9c55760

Browse files
authored
Merge pull request #725 from rust-lang/cargo/0.4.30
Prepare for 0.4.30 release
2 parents 7ccd873 + d1acb05 commit 9c55760

4 files changed

Lines changed: 22 additions & 7 deletions

File tree

CHANGELOG.md

Lines changed: 19 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,21 +2,35 @@
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+
16+
### Notable Changes
17+
* MSRV is bumped to 1.71.0 in https://github.com/rust-lang/log/pull/723
18+
519
## [0.4.29] - 2025-12-02
620

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

11-
## New Contributors
25+
### New Contributors
1226
* @AldaronLau made their first contribution in https://github.com/rust-lang/log/pull/703
1327
* @dishmaker made their first contribution in https://github.com/rust-lang/log/pull/709
1428

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

1731
## [0.4.28] - 2025-09-02
1832

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

390404
Look at the [release tags] for information about older releases.
391405

392-
[Unreleased]: https://github.com/rust-lang-nursery/log/compare/0.4.29...HEAD
406+
[Unreleased]: https://github.com/rust-lang-nursery/log/compare/0.4.30...HEAD
407+
[0.4.30]: https://github.com/rust-lang/log/compare/0.4.29...0.4.30
393408
[0.4.29]: https://github.com/rust-lang/log/compare/0.4.28...0.4.29
394409
[0.4.28]: https://github.com/rust-lang/log/compare/0.4.27...0.4.28
395410
[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"

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ implementation that is most suitable for its use case.
1818

1919
## Minimum supported `rustc`
2020

21-
`1.68.0+`
21+
See the `rust-version` field in `Cargo.toml` for the current minimum Rust toolchain version.
2222

2323
This version is explicitly tested in CI and may be bumped in any release as needed. Maintaining compatibility with older compilers is a priority though, so the bar for bumping the minimum supported version is set very high. Any changes to the supported minimum version will be called out in the release notes.
2424

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)