From b8b5779330320e535e9fdef8fee5b9f10d7eaf87 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=90=D1=80=D1=82=D1=91=D0=BC=20=D0=9F=D0=B0=D0=B2=D0=BB?= =?UTF-8?q?=D0=BE=D0=B2=20=5BArtyom=20Pavlov=5D?= Date: Tue, 3 Feb 2026 00:40:17 +0300 Subject: [PATCH] Release v0.4.1 --- CHANGELOG.md | 10 +++++++++- Cargo.lock | 18 +++++++++--------- Cargo.toml | 2 +- 3 files changed, 19 insertions(+), 11 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index eb4ab251a..719fde63d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,13 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [0.4.1] - 2026-02-03 + +### Fixed +- Documentation build on docs.rs [#801] + +[#801]: https://github.com/rust-random/getrandom/pull/801 + ## [0.4.0] - 2026-02-02 ### Added @@ -659,7 +666,8 @@ Publish initial implementation. ## [0.0.0] - 2019-01-19 Publish an empty template library. -[Unreleased]: https://github.com/rust-random/getrandom/compare/v0.3.4...master +[0.4.1]: https://github.com/rust-random/getrandom/compare/v0.4.0...v0.4.1 +[0.4.0]: https://github.com/rust-random/getrandom/compare/v0.3.4...v0.4.0 [0.3.4]: https://github.com/rust-random/getrandom/compare/v0.3.3...v0.3.4 [0.3.3]: https://github.com/rust-random/getrandom/compare/v0.3.2...v0.3.3 [0.3.2]: https://github.com/rust-random/getrandom/compare/v0.3.1...v0.3.2 diff --git a/Cargo.lock b/Cargo.lock index 2c7e551dc..4c4245f93 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -45,9 +45,9 @@ checksum = "37b2a672a2cb129a2e41c10b1224bb368f9f37a2b16b612598138befd7b37eb5" [[package]] name = "cc" -version = "1.2.54" +version = "1.2.55" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6354c81bbfd62d9cfa9cb3c773c2b7b2a3a482d569de977fd0e961f6e7c00583" +checksum = "47b26a0954ae34af09b50f0de26458fa95369a0d478d8236d3f93082b219bd29" dependencies = [ "find-msvc-tools", "shlex", @@ -67,9 +67,9 @@ checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f" [[package]] name = "find-msvc-tools" -version = "0.1.8" +version = "0.1.9" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8591b0bcc8a98a64310a2fae1bb3e9b8564dd10e381e6e28010fde8e8e8568db" +checksum = "5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582" [[package]] name = "foldhash" @@ -104,7 +104,7 @@ dependencies = [ [[package]] name = "getrandom" -version = "0.4.0" +version = "0.4.1" dependencies = [ "cfg-if", "js-sys", @@ -367,9 +367,9 @@ checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64" [[package]] name = "slab" -version = "0.4.11" +version = "0.4.12" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7a2ae44ef20feb57a68b23d846850f861394c2e02dc425a50098ae8c90267589" +checksum = "0c790de23124f9ab44544d7ac05d60440adc586479ce501c1d6d7da3cd8c9cf5" [[package]] name = "syn" @@ -678,6 +678,6 @@ dependencies = [ [[package]] name = "zmij" -version = "1.0.17" +version = "1.0.19" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "02aae0f83f69aafc94776e879363e9771d7ecbffe2c7fbb6c14c5e00dfe88439" +checksum = "3ff05f8caa9038894637571ae6b9e29466c1f4f829d26c9b28f869a29cbe3445" diff --git a/Cargo.toml b/Cargo.toml index c92f9e716..1bf7449ef 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "getrandom" -version = "0.4.0" +version = "0.4.1" edition = "2024" rust-version = "1.85" # Sync tests.yml and README.md. authors = ["The Rand Project Developers"]