Skip to content

Commit b9c7c0c

Browse files
authored
Release v0.2.4 (#238)
1 parent 9110af5 commit b9c7c0c

File tree

3 files changed

+15
-4
lines changed

3 files changed

+15
-4
lines changed

CHANGELOG.md

Lines changed: 13 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,20 @@ 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-
- Added x86_64-unknown-hermit support [#236]
7+
## [0.2.4] - 2021-12-13
8+
### Changed
9+
- Use explicit imports in the `js` backend [#220]
10+
- Use `/dev/urandom` on Redox instead of `rand:` [#222]
11+
- Use `NonZeroU32::new_unchecked` to convert wasi error [#233]
12+
13+
### Added
14+
- SOLID targets (`*-kmc-solid_*`) support [#235]
15+
- Limited Hermit (`x86_64-unknown-hermit`) support [#236]
916

17+
[#220]: https://github.com/rust-random/getrandom/pull/220
18+
[#222]: https://github.com/rust-random/getrandom/pull/222
19+
[#233]: https://github.com/rust-random/getrandom/pull/233
20+
[#235]: https://github.com/rust-random/getrandom/pull/235
1021
[#236]: https://github.com/rust-random/getrandom/pull/236
1122

1223
## [0.2.3] - 2021-04-10

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.3" # Also update html_root_url in lib.rs when bumping this
3+
version = "0.2.4" # Also update html_root_url in lib.rs when bumping this
44
edition = "2018"
55
authors = ["The Rand Project Developers"]
66
license = "MIT OR Apache-2.0"

src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@
146146
#![doc(
147147
html_logo_url = "https://www.rust-lang.org/logos/rust-logo-128x128-blk.png",
148148
html_favicon_url = "https://www.rust-lang.org/favicon.ico",
149-
html_root_url = "https://docs.rs/getrandom/0.2.3"
149+
html_root_url = "https://docs.rs/getrandom/0.2.4"
150150
)]
151151
#![no_std]
152152
#![warn(rust_2018_idioms, unused_lifetimes, missing_docs)]

0 commit comments

Comments
 (0)