Skip to content

Commit 14c7095

Browse files
authored
Release v0.3.0-rc.0 (rust-random#547)
1 parent d5f544e commit 14c7095

3 files changed

Lines changed: 6 additions & 5 deletions

File tree

CHANGELOG.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
99
### Breaking Changes
1010

1111
#### Changed
12-
- Bump MSRV to 1.60 [#472]
12+
- Bump MSRV to 1.63 [#542]
1313
- Rename `getrandom` and `getrandom_uninit` functions to `fill` and `fill_uninit` respectively [#532]
1414

1515
#### Removed
@@ -35,12 +35,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
3535
- `rndr` opt-in backend [#512]
3636
- `linux_rustix` opt-in backend [#520]
3737
- Memory sanitizer support gated behind `getrandom_sanitize` configuration flag [#521]
38+
- `u32` and `u64` functions for generating random values of the respective type [#544]
3839

3940
[#415]: https://github.com/rust-random/getrandom/pull/415
4041
[#440]: https://github.com/rust-random/getrandom/pull/440
4142
[#442]: https://github.com/rust-random/getrandom/pull/442
4243
[#448]: https://github.com/rust-random/getrandom/pull/448
43-
[#472]: https://github.com/rust-random/getrandom/pull/472
4444
[#490]: https://github.com/rust-random/getrandom/pull/490
4545
[#499]: https://github.com/rust-random/getrandom/pull/499
4646
[#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
5050
[#521]: https://github.com/rust-random/getrandom/pull/521
5151
[#522]: https://github.com/rust-random/getrandom/pull/522
5252
[#532]: https://github.com/rust-random/getrandom/pull/532
53+
[#542]: https://github.com/rust-random/getrandom/pull/542
54+
[#544]: https://github.com/rust-random/getrandom/pull/544
5355

5456
## [0.2.15] - 2024-05-06
5557
### Added

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "getrandom"
3-
version = "0.2.15" # Also update html_root_url in lib.rs when bumping this
3+
version = "0.3.0-rc.0"
44
edition = "2021"
55
rust-version = "1.63" # Sync tests.yml and README.md.
66
authors = ["The Rand Project Developers"]

src/lib.rs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,7 @@
55
#![no_std]
66
#![doc(
77
html_logo_url = "https://www.rust-lang.org/logos/rust-logo-128x128-blk.png",
8-
html_favicon_url = "https://www.rust-lang.org/favicon.ico",
9-
html_root_url = "https://docs.rs/getrandom/0.2.15"
8+
html_favicon_url = "https://www.rust-lang.org/favicon.ico"
109
)]
1110
#![doc = include_str!("../README.md")]
1211
#![warn(rust_2018_idioms, unused_lifetimes, missing_docs)]

0 commit comments

Comments
 (0)