Skip to content

Commit d1a8306

Browse files
committed
prepare for 0.4.22 release
1 parent 46894ef commit d1a8306

File tree

3 files changed

+22
-2
lines changed

3 files changed

+22
-2
lines changed

CHANGELOG.md

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,26 @@
22

33
## [Unreleased]
44

5+
## [0.4.22] - 2024-06-27
6+
7+
## What's Changed
8+
* Add some clarifications to the library docs by @KodrAus in https://github.com/rust-lang/log/pull/620
9+
* Add links to `colog` crate by @chrivers in https://github.com/rust-lang/log/pull/621
10+
* adding line_number test + updating some testing infrastructure by @DIvkov575 in https://github.com/rust-lang/log/pull/619
11+
* Clarify the actual set of functions that can race in _racy variants by @KodrAus in https://github.com/rust-lang/log/pull/623
12+
* Replace deprecated std::sync::atomic::spin_loop_hint() by @Catamantaloedis in https://github.com/rust-lang/log/pull/625
13+
* Check usage of max_level features by @Thomasdezeeuw in https://github.com/rust-lang/log/pull/627
14+
* Remove unneeded import by @Thomasdezeeuw in https://github.com/rust-lang/log/pull/628
15+
* Loosen orderings for logger initialization in https://github.com/rust-lang/log/pull/632. Originally by @pwoolcoc in https://github.com/rust-lang/log/pull/599
16+
* Use Location::caller() for file and line info in https://github.com/rust-lang/log/pull/633. Originally by @Cassy343 in https://github.com/rust-lang/log/pull/520
17+
18+
## New Contributors
19+
* @chrivers made their first contribution in https://github.com/rust-lang/log/pull/621
20+
* @DIvkov575 made their first contribution in https://github.com/rust-lang/log/pull/619
21+
* @Catamantaloedis made their first contribution in https://github.com/rust-lang/log/pull/625
22+
23+
**Full Changelog**: https://github.com/rust-lang/log/compare/0.4.21...0.4.22
24+
525
## [0.4.21] - 2024-02-27
626

727
## What's Changed

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.21" # remember to update html_root_url
4+
version = "0.4.22" # 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
@@ -336,7 +336,7 @@
336336
#![doc(
337337
html_logo_url = "https://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png",
338338
html_favicon_url = "https://www.rust-lang.org/favicon.ico",
339-
html_root_url = "https://docs.rs/log/0.4.21"
339+
html_root_url = "https://docs.rs/log/0.4.22"
340340
)]
341341
#![warn(missing_docs)]
342342
#![deny(missing_debug_implementations, unconditional_recursion)]

0 commit comments

Comments
 (0)