Skip to content

Commit 35161d0

Browse files
authored
Merge pull request #674 from rust-lang/cargo/0.4.27
Prepare for 0.4.27 release
2 parents ea6f54d + cc131ef commit 35161d0

File tree

3 files changed

+15
-3
lines changed

3 files changed

+15
-3
lines changed

CHANGELOG.md

+13-1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,17 @@
22

33
## [Unreleased]
44

5+
## [0.4.27] - 2025-03-24
6+
7+
## What's Changed
8+
* A few minor lint fixes by @nyurik in https://github.com/rust-lang/log/pull/671
9+
* Enable clippy support for format-like macros by @nyurik in https://github.com/rust-lang/log/pull/665
10+
* Add an optional logger param by @tisonkun in https://github.com/rust-lang/log/pull/664
11+
* Pass global logger by value, supplied logger by ref by @KodrAus in https://github.com/rust-lang/log/pull/673
12+
13+
14+
**Full Changelog**: https://github.com/rust-lang/log/compare/0.4.26...0.4.27
15+
516
## [0.4.26] - 2025-02-18
617

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

348359
Look at the [release tags] for information about older releases.
349360

350-
[Unreleased]: https://github.com/rust-lang-nursery/log/compare/0.4.26...HEAD
361+
[Unreleased]: https://github.com/rust-lang-nursery/log/compare/0.4.27...HEAD
362+
[0.4.27]: https://github.com/rust-lang/log/compare/0.4.26...0.4.27
351363
[0.4.26]: https://github.com/rust-lang/log/compare/0.4.25...0.4.26
352364
[0.4.25]: https://github.com/rust-lang/log/compare/0.4.24...0.4.25
353365
[0.4.24]: https://github.com/rust-lang/log/compare/0.4.23...0.4.24

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22

33
name = "log"
4-
version = "0.4.26" # remember to update html_root_url
4+
version = "0.4.27" # 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

+1-1
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.26"
347+
html_root_url = "https://docs.rs/log/0.4.27"
348348
)]
349349
#![warn(missing_docs)]
350350
#![deny(missing_debug_implementations, unconditional_recursion)]

0 commit comments

Comments
 (0)