Skip to content

Commit e266249

Browse files
authored
Prepare release v0.1.9 (#83)
1 parent bf54eaa commit e266249

File tree

2 files changed

+19
-2
lines changed

2 files changed

+19
-2
lines changed

CHANGELOG.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,23 @@ 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.1.9] - 2019-08-14
8+
### Changed
9+
- Remove `std` dependency for opening and reading files. [#58]
10+
- Use `wasi` isntead of `libc` on WASI target. [#64]
11+
- By default emit a compile-time error when built for an unsupported target.
12+
This behaviour can be disabled by using the `dummy` feature. [#71]
13+
14+
### Added
15+
- Add support for UWP targets. [#69]
16+
- Add unstable `rustc-dep-of-std` feature. [#78]
17+
18+
[#58]: https://github.com/rust-random/getrandom/pull/58
19+
[#64]: https://github.com/rust-random/getrandom/pull/64
20+
[#69]: https://github.com/rust-random/getrandom/pull/69
21+
[#71]: https://github.com/rust-random/getrandom/pull/71
22+
[#78]: https://github.com/rust-random/getrandom/pull/78
23+
724
## [0.1.8] - 2019-07-29
825
### Changed
926
- Explicitly specify types to arguments of 'libc::syscall'. [#74]

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "getrandom"
3-
version = "0.1.8"
3+
version = "0.1.9"
44
edition = "2018"
55
authors = ["The Rand Project Developers"]
66
license = "MIT OR Apache-2.0"
@@ -39,5 +39,5 @@ stdweb = { version = "0.4.18", optional = true }
3939
std = []
4040
# enables dummy implementation for unsupported targets
4141
dummy = []
42-
# Unstable feature to support being a libstd dependancy
42+
# Unstable feature to support being a libstd dependency
4343
rustc-dep-of-std = ["compiler_builtins", "core"]

0 commit comments

Comments
 (0)