Skip to content

Commit 43899e2

Browse files
authored
Release v0.3.2 (rust-random#617)
### Added - `efi_rng` opt-in backend [rust-random#570] - `linux_raw` opt-in backend [rust-random#572] - `.cargo/config.toml` example in the crate-level docs [rust-random#591] - `getrandom_test_linux_without_fallback` configuration flag to test that file fallback is not triggered in the `linux_android_with_fallback` backend [rust-random#605] - Built-in support for `*-linux-none` targets [rust-random#618] - Cygwin support [rust-random#626] ### Changed - Update `wasi` dependency to v0.14 [rust-random#594] - Add `#[inline]` attribute to the inner functions [rust-random#596] - Update WASI and Emscripten links in the crate-level docs [rust-random#597] - Do not use `dlsym` on MUSL targets in the `linux_android_with_fallback` backend [rust-random#602] - Remove `linux_android.rs` and use `getrandom.rs` instead [rust-random#603] - Always use `RtlGenRandom` on Windows targets when compiling with pre-1.78 Rust [rust-random#610] - Internal representation of the `Error` type [rust-random#614] - Remove `windows-targets` dependency and use [`raw-dylib`] directly [rust-random#627] ### Removed - `Error::INTERNAL_START` and `Error::CUSTOM_START` associated constants [rust-random#614] [rust-random#570]: rust-random#570 [rust-random#572]: rust-random#572 [rust-random#591]: rust-random#591 [rust-random#594]: rust-random#594 [rust-random#596]: rust-random#596 [rust-random#597]: rust-random#597 [rust-random#602]: rust-random#602 [rust-random#603]: rust-random#603 [rust-random#605]: rust-random#605 [rust-random#610]: rust-random#610 [rust-random#614]: rust-random#614 [rust-random#618]: rust-random#618 [rust-random#626]: rust-random#626 [rust-random#627]: rust-random#627 [`raw-dylib`]: https://doc.rust-lang.org/reference/items/external-blocks.html?highlight=link#dylib-versus-raw-dylib
1 parent c6785de commit 43899e2

3 files changed

Lines changed: 4 additions & 4 deletions

File tree

CHANGELOG.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
55
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

7-
## [0.3.2] - UNRELEASED
7+
## [0.3.2] - 2025-03-17
88

99
### Added
1010
- `efi_rng` opt-in backend [#570]
@@ -16,14 +16,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1616
- Cygwin support [#626]
1717

1818
### Changed
19-
- Remove `windows-targets` dependency and use [`raw-dylib`] directly [#627]
2019
- Update `wasi` dependency to v0.14 [#594]
2120
- Add `#[inline]` attribute to the inner functions [#596]
2221
- Update WASI and Emscripten links in the crate-level docs [#597]
2322
- Do not use `dlsym` on MUSL targets in the `linux_android_with_fallback` backend [#602]
2423
- Remove `linux_android.rs` and use `getrandom.rs` instead [#603]
2524
- Always use `RtlGenRandom` on Windows targets when compiling with pre-1.78 Rust [#610]
2625
- Internal representation of the `Error` type [#614]
26+
- Remove `windows-targets` dependency and use [`raw-dylib`] directly [#627]
2727

2828
### Removed
2929
- `Error::INTERNAL_START` and `Error::CUSTOM_START` associated constants [#614]

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

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.3.1"
3+
version = "0.3.2"
44
edition = "2021"
55
rust-version = "1.63" # Sync tests.yml and README.md.
66
authors = ["The Rand Project Developers"]

0 commit comments

Comments
 (0)