Skip to content

Commit 6b353a4

Browse files
committed
Release v0.2.1
1 parent 77740f8 commit 6b353a4

File tree

3 files changed

+33
-3
lines changed

3 files changed

+33
-3
lines changed

CHANGELOG.md

+32
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,26 @@ 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.1] - 2021-01-03
8+
### Changed
9+
- Update `cfg-if` to v1.0. [#166]
10+
- Update `wasi` to v0.10. [#167]
11+
12+
### Fixed
13+
- Multithreaded WASM support. [#165]
14+
15+
### Removed
16+
- Windows XP support. [#177]
17+
- Direct `stdweb` support. [#178]
18+
- CloudABI support. [#184]
19+
20+
[#165]: https://github.com/rust-random/getrandom/pull/165
21+
[#166]: https://github.com/rust-random/getrandom/pull/166
22+
[#167]: https://github.com/rust-random/getrandom/pull/167
23+
[#177]: https://github.com/rust-random/getrandom/pull/177
24+
[#178]: https://github.com/rust-random/getrandom/pull/178
25+
[#184]: https://github.com/rust-random/getrandom/pull/184
26+
727
## [0.2.0] - 2020-09-10
828
### Features for using getrandom on unsupported targets
929

@@ -32,6 +52,18 @@ The following (off by default) Cargo features have been added:
3252
[#153]: https://github.com/rust-random/getrandom/pull/153
3353
[#159]: https://github.com/rust-random/getrandom/pull/159
3454

55+
## [0.1.16] - 2020-12-31
56+
### Changed
57+
- Update `cfg-if` to v1.0. [#173]
58+
- Implement `std::error::Error` for the `Error` type on additional targets. [#169]
59+
60+
### Fixed
61+
- Multithreaded WASM support. [#171]
62+
63+
[#173]: https://github.com/rust-random/getrandom/pull/173
64+
[#171]: https://github.com/rust-random/getrandom/pull/171
65+
[#169]: https://github.com/rust-random/getrandom/pull/169
66+
3567
## [0.1.15] - 2020-09-10
3668
### Changed
3769
- Added support for Internet Explorer 11 [#139]

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "getrandom"
3-
version = "0.2.0"
3+
version = "0.2.1"
44
edition = "2018"
55
authors = ["The Rand Project Developers"]
66
license = "MIT OR Apache-2.0"

README.md

-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
# getrandom
22

3-
[![Build Status](https://travis-ci.org/rust-random/getrandom.svg?branch=master)](https://travis-ci.org/rust-random/getrandom)
4-
[![Build Status](https://ci.appveyor.com/api/projects/status/github/rust-random/getrandom?svg=true)](https://ci.appveyor.com/project/rust-random/getrandom)
53
[![Crate](https://img.shields.io/crates/v/getrandom.svg)](https://crates.io/crates/getrandom)
64
[![Documentation](https://docs.rs/getrandom/badge.svg)](https://docs.rs/getrandom)
75
[![Dependency status](https://deps.rs/repo/github/rust-random/getrandom/status.svg)](https://deps.rs/repo/github/rust-random/getrandom)

0 commit comments

Comments
 (0)