diff --git a/CHANGELOG.md b/CHANGELOG.md index 2383f6c5..c01987b1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,7 +9,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Breaking Changes #### Changed -- Bump MSRV to 1.60 [#472] +- Bump MSRV to 1.63 [#542] - Rename `getrandom` and `getrandom_uninit` functions to `fill` and `fill_uninit` respectively [#532] #### Removed @@ -35,12 +35,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - `rndr` opt-in backend [#512] - `linux_rustix` opt-in backend [#520] - Memory sanitizer support gated behind `getrandom_sanitize` configuration flag [#521] +- `u32` and `u64` functions for generating random values of the respective type [#544] [#415]: https://github.com/rust-random/getrandom/pull/415 [#440]: https://github.com/rust-random/getrandom/pull/440 [#442]: https://github.com/rust-random/getrandom/pull/442 [#448]: https://github.com/rust-random/getrandom/pull/448 -[#472]: https://github.com/rust-random/getrandom/pull/472 [#490]: https://github.com/rust-random/getrandom/pull/490 [#499]: https://github.com/rust-random/getrandom/pull/499 [#504]: https://github.com/rust-random/getrandom/pull/504 @@ -50,6 +50,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 [#521]: https://github.com/rust-random/getrandom/pull/521 [#522]: https://github.com/rust-random/getrandom/pull/522 [#532]: https://github.com/rust-random/getrandom/pull/532 +[#542]: https://github.com/rust-random/getrandom/pull/542 +[#544]: https://github.com/rust-random/getrandom/pull/544 ## [0.2.15] - 2024-05-06 ### Added diff --git a/Cargo.toml b/Cargo.toml index 2886268e..559ca05e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "getrandom" -version = "0.2.15" # Also update html_root_url in lib.rs when bumping this +version = "0.3.0-rc.0" edition = "2021" rust-version = "1.63" # Sync tests.yml and README.md. authors = ["The Rand Project Developers"] diff --git a/src/lib.rs b/src/lib.rs index 930b9452..5b0f47fd 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -5,8 +5,7 @@ #![no_std] #![doc( html_logo_url = "https://www.rust-lang.org/logos/rust-logo-128x128-blk.png", - html_favicon_url = "https://www.rust-lang.org/favicon.ico", - html_root_url = "https://docs.rs/getrandom/0.2.15" + html_favicon_url = "https://www.rust-lang.org/favicon.ico" )] #![doc = include_str!("../README.md")] #![warn(rust_2018_idioms, unused_lifetimes, missing_docs)]