Skip to content

Commit 93632b3

Browse files
committed
Update CHANGELOG
1 parent 87513b0 commit 93632b3

File tree

2 files changed

+9
-0
lines changed

2 files changed

+9
-0
lines changed

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,13 @@ 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+
## [Unreleased]
8+
9+
### Added
10+
- `RawOsError` type alias [#739]
11+
12+
[#739]: https://github.com/rust-random/getrandom/pull/739
13+
714
## [0.3.4] - 2025-10-14
815

916
### Major change to `wasm_js` backend
@@ -631,6 +638,7 @@ Publish initial implementation.
631638
## [0.0.0] - 2019-01-19
632639
Publish an empty template library.
633640

641+
[Unreleased]: https://github.com/rust-random/getrandom/compare/v0.3.4...master
634642
[0.3.4]: https://github.com/rust-random/getrandom/compare/v0.3.3...v0.3.4
635643
[0.3.3]: https://github.com/rust-random/getrandom/compare/v0.3.2...v0.3.3
636644
[0.3.2]: https://github.com/rust-random/getrandom/compare/v0.3.1...v0.3.2

src/error.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ use core::fmt;
77
// https://doc.rust-lang.org/std/io/type.RawOsError.html)
88
cfg_if::cfg_if!(
99
if #[cfg(target_os = "uefi")] {
10+
/// Raw error code
1011
// See the UEFI spec for more information:
1112
// https://uefi.org/specs/UEFI/2.10/Apx_D_Status_Codes.html
1213
pub type RawOsError = usize;

0 commit comments

Comments
 (0)