Skip to content

Commit 304eef7

Browse files
authored
Merge pull request #566 from rust-lang/cargo/0.4.18-patch
Prepare for 0.4.18 release
2 parents fcbb351 + d062c83 commit 304eef7

File tree

3 files changed

+22
-2
lines changed

3 files changed

+22
-2
lines changed

CHANGELOG.md

+20
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,26 @@
22

33
## [Unreleased]
44

5+
## [0.4.18] - 2023-05-28
6+
7+
* fix markdown links (again) by @hellow554 in https://github.com/rust-lang/log/pull/513
8+
* add cargo doc to workflow by @hellow554 in https://github.com/rust-lang/log/pull/515
9+
* Apply Clippy lints by @hellow554 in https://github.com/rust-lang/log/pull/516
10+
* Replace ad-hoc eq_ignore_ascii_case with slice::eq_ignore_ascii_case by @glandium in https://github.com/rust-lang/log/pull/519
11+
* fix up windows targets by @KodrAus in https://github.com/rust-lang/log/pull/528
12+
* typo fix by @jiangying000 in https://github.com/rust-lang/log/pull/529
13+
* Remove dependency on cfg_if by @EriKWDev in https://github.com/rust-lang/log/pull/536
14+
* GitHub Workflows security hardening by @sashashura in https://github.com/rust-lang/log/pull/538
15+
* Fix build status badge by @atouchet in https://github.com/rust-lang/log/pull/539
16+
* Add call_logger to the documentation by @a1ecbr0wn in https://github.com/rust-lang/log/pull/547
17+
* Remove build.rs file by @GuillaumeGomez in https://github.com/rust-lang/log/pull/543
18+
* Use stable internals for key-value API by @KodrAus in https://github.com/rust-lang/log/pull/550
19+
* Change wording of list of implementations by @Thomasdezeeuw in https://github.com/rust-lang/log/pull/553
20+
* Add std-logger to list of implementations by @Thomasdezeeuw in https://github.com/rust-lang/log/pull/554
21+
* Add `set_max_level_racy` and gate `set_max_level` by @djkoloski in https://github.com/rust-lang/log/pull/544
22+
* [doc] src/lib.rs : prefix an unused variable with an underscore by @OccupyMars2025 in https://github.com/rust-lang/log/pull/561
23+
* [doc] src/macros.rs : correct grammar errors of an example in lib documentation by @OccupyMars2025 in https://github.com/rust-lang/log/pull/562
24+
525
## [0.4.17] - 2022-04-29
626

727
* Update `kv_unstable` internal dependencies.

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.17" # remember to update html_root_url
4+
version = "0.4.18" # 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
@@ -317,7 +317,7 @@
317317
#![doc(
318318
html_logo_url = "https://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png",
319319
html_favicon_url = "https://www.rust-lang.org/favicon.ico",
320-
html_root_url = "https://docs.rs/log/0.4.17"
320+
html_root_url = "https://docs.rs/log/0.4.18"
321321
)]
322322
#![warn(missing_docs)]
323323
#![deny(missing_debug_implementations, unconditional_recursion)]

0 commit comments

Comments
 (0)