diff --git a/CHANGELOG.md b/CHANGELOG.md index 8e40bce..fbefe04 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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] diff --git a/Cargo.toml b/Cargo.toml index add450f..c310d93 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -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"]