Prepare release v0.1.9 (#83)

This commit is contained in:
Artyom Pavlov
2019-08-14 13:55:27 +00:00
committed by GitHub
parent bf54eaa557
commit e266249f61
2 changed files with 19 additions and 2 deletions
+17
View File
@@ -4,6 +4,23 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
## [0.1.9] - 2019-08-14
### Changed
- Remove `std` dependency for opening and reading files. [#58]
- Use `wasi` isntead of `libc` on WASI target. [#64]
- By default emit a compile-time error when built for an unsupported target.
This behaviour can be disabled by using the `dummy` feature. [#71]
### Added
- Add support for UWP targets. [#69]
- Add unstable `rustc-dep-of-std` feature. [#78]
[#58]: https://github.com/rust-random/getrandom/pull/58
[#64]: https://github.com/rust-random/getrandom/pull/64
[#69]: https://github.com/rust-random/getrandom/pull/69
[#71]: https://github.com/rust-random/getrandom/pull/71
[#78]: https://github.com/rust-random/getrandom/pull/78
## [0.1.8] - 2019-07-29
### Changed
- Explicitly specify types to arguments of 'libc::syscall'. [#74]
+2 -2
View File
@@ -1,6 +1,6 @@
[package]
name = "getrandom"
version = "0.1.8"
version = "0.1.9"
edition = "2018"
authors = ["The Rand Project Developers"]
license = "MIT OR Apache-2.0"
@@ -39,5 +39,5 @@ stdweb = { version = "0.4.18", optional = true }
std = []
# enables dummy implementation for unsupported targets
dummy = []
# Unstable feature to support being a libstd dependancy
# Unstable feature to support being a libstd dependency
rustc-dep-of-std = ["compiler_builtins", "core"]