File tree 3 files changed +15
-4
lines changed
3 files changed +15
-4
lines changed Original file line number Diff line number Diff line change @@ -4,9 +4,20 @@ All notable changes to this project will be documented in this file.
4
4
The format is based on [ Keep a Changelog] ( http://keepachangelog.com/en/1.0.0/ )
5
5
and this project adheres to [ Semantic Versioning] ( https://semver.org/spec/v2.0.0.html ) .
6
6
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 ]
9
16
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
10
21
[ #236 ] : https://github.com/rust-random/getrandom/pull/236
11
22
12
23
## [ 0.2.3] - 2021-04-10
Original file line number Diff line number Diff line change 1
1
[package ]
2
2
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
4
4
edition = " 2018"
5
5
authors = [" The Rand Project Developers" ]
6
6
license = " MIT OR Apache-2.0"
Original file line number Diff line number Diff line change 146
146
#![ doc(
147
147
html_logo_url = "https://www.rust-lang.org/logos/rust-logo-128x128-blk.png" ,
148
148
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 "
150
150
) ]
151
151
#![ no_std]
152
152
#![ warn( rust_2018_idioms, unused_lifetimes, missing_docs) ]
You can’t perform that action at this time.
0 commit comments