Skip to content

Commit 5d2a4a2

Browse files
committed
Update Changelog for 0.2
Signed-off-by: Joe Richey <[email protected]>
1 parent 5f4886b commit 5d2a4a2

File tree

1 file changed

+36
-0
lines changed

1 file changed

+36
-0
lines changed

CHANGELOG.md

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,42 @@ 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.2.0] - 2020-09-10
8+
### Features for using getrandom on unsupported targets
9+
10+
The following (off by default) Cargo features have been added:
11+
- `"rdrand"` - use the RDRAND instruction on `no_std` `x86`/`x86_64` targets [#133]
12+
- `"js"` - use JavaScript calls on `wasm32-unknown-unknown` [#149]
13+
- Replaces the `stdweb` and `wasm-bindgen` features (which are removed)
14+
- `"custom"` - allows a user to specify a custom implementation [#109]
15+
16+
### Breaking Changes
17+
- Unsupported targets no longer compile [#107]
18+
- Change/Add `Error` constants [#120]
19+
- Only impl `std` traits when the `"std"` Cargo feature is specified [#106]
20+
- Remove offical support for Hermit, L4Re, and UEFI [#133]
21+
- Remove optional `"log"` dependancy [#131]
22+
- Update minimum supported Linux kernel to 2.6.32 [#153]
23+
- Update MSRV to 1.34 [#159]
24+
25+
[#106]: https://github.com/rust-random/getrandom/pull/106
26+
[#107]: https://github.com/rust-random/getrandom/pull/107
27+
[#109]: https://github.com/rust-random/getrandom/pull/109
28+
[#120]: https://github.com/rust-random/getrandom/pull/120
29+
[#131]: https://github.com/rust-random/getrandom/pull/131
30+
[#133]: https://github.com/rust-random/getrandom/pull/133
31+
[#149]: https://github.com/rust-random/getrandom/pull/149
32+
[#153]: https://github.com/rust-random/getrandom/pull/153
33+
[#159]: https://github.com/rust-random/getrandom/pull/159
34+
35+
## [0.1.15] - 2020-09-10
36+
### Changed
37+
- Added support for Internet Explorer 11 [#139]
38+
- Fix Webpack require warning with `wasm-bindgen` [#137]
39+
40+
[#137]: https://github.com/rust-random/getrandom/pull/137
41+
[#139]: https://github.com/rust-random/getrandom/pull/139
42+
743
## [0.1.14] - 2020-01-07
844
### Changed
945
- Remove use of spin-locks in the `use_file` module. [#125]

0 commit comments

Comments
 (0)