From 0c23c84ba11ceb8bf5320cf5961eb8206a03cc40 Mon Sep 17 00:00:00 2001 From: newpavlov Date: Mon, 6 Jan 2020 00:03:58 +0300 Subject: [PATCH 1/4] prepare release v0.1.14 --- CHANGELOG.md | 6 ++++++ Cargo.toml | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2f6e9f4e..cf647906 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,12 @@ 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.13] - 2019-08-25 +### Changed +- Update `wasi` to v0.9. [#126] + +[#126]: https://github.com/rust-random/getrandom/pull/126 + ## [0.1.13] - 2019-08-25 ### Added - VxWorks targets support. [#86] diff --git a/Cargo.toml b/Cargo.toml index 35470f11..d10183fa 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "getrandom" -version = "0.1.13" +version = "0.1.14" edition = "2018" authors = ["The Rand Project Developers"] license = "MIT OR Apache-2.0" From 6d3b1a9d4d106c67412848d1b6cf8092c696efb2 Mon Sep 17 00:00:00 2001 From: Artyom Pavlov Date: Tue, 7 Jan 2020 03:57:34 +0000 Subject: [PATCH 2/4] Add DragonFlyBSD workaround --- CHANGELOG.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index cf647906..da8cf513 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,8 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [0.1.13] - 2019-08-25 ### Changed - Update `wasi` to v0.9. [#126] +- Do not read errno value on DragonFlyBSD to fix compilation failure. [#129] [#126]: https://github.com/rust-random/getrandom/pull/126 +[#129]: https://github.com/rust-random/getrandom/pull/129 ## [0.1.13] - 2019-08-25 ### Added From 645fb58a097ea4ea7bd46d9177c971806a8c3d39 Mon Sep 17 00:00:00 2001 From: Artyom Pavlov Date: Tue, 7 Jan 2020 11:10:07 +0000 Subject: [PATCH 3/4] add PR125 --- CHANGELOG.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index da8cf513..6cf2e213 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,11 +4,13 @@ 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.13] - 2019-08-25 +## [0.1.14] - 2020-01-08 ### Changed +- Remove use of spin-locks in the `use_file` module. [#125] - Update `wasi` to v0.9. [#126] - Do not read errno value on DragonFlyBSD to fix compilation failure. [#129] +[#125]: https://github.com/rust-random/getrandom/pull/125 [#126]: https://github.com/rust-random/getrandom/pull/126 [#129]: https://github.com/rust-random/getrandom/pull/129 From b164d14c443a4b4e6bc603e153e4d8e373b547cc Mon Sep 17 00:00:00 2001 From: Artyom Pavlov Date: Tue, 7 Jan 2020 12:05:03 +0000 Subject: [PATCH 4/4] change release date --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6cf2e213..29b447c4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,7 +4,7 @@ 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.14] - 2020-01-08 +## [0.1.14] - 2020-01-07 ### Changed - Remove use of spin-locks in the `use_file` module. [#125] - Update `wasi` to v0.9. [#126]