From d6764f30390f1f67e6cab8d9d6c77f7475d0a41c Mon Sep 17 00:00:00 2001 From: newpavlov Date: Thu, 24 Oct 2019 13:01:50 +0300 Subject: [PATCH 1/3] prepare release v0.1.13 --- CHANGELOG.md | 20 ++++++++++++++++++++ Cargo.toml | 2 +- 2 files changed, 21 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6f43b26f3..ebc7c83ba 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,26 @@ 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 +### Added +- VxWorks targets support. [#86] + +### Changed +- If zero-length slice is passed to the `getrandom` function, always return +`Ok(())` immediately without doing any calls to the underlying operating +system . [#104] +- Bump `cfg-if` minimum version from 0.1.0 to 0.1.2. [#112] +- Use the `arandom` sysctl on NetBSD. [#115] + +### Fixed +- Typos and bad doc links. [#117] + +[#86]: https://github.com/rust-random/getrandom/pull/86 +[#104]: https://github.com/rust-random/getrandom/pull/104 +[#112]: https://github.com/rust-random/getrandom/pull/112 +[#115]: https://github.com/rust-random/getrandom/pull/115 +[#117]: https://github.com/rust-random/getrandom/pull/117 + ## [0.1.12] - 2019-08-18 ### Changed - Update wasi dependency from v0.5 to v0.7. [#100] diff --git a/Cargo.toml b/Cargo.toml index 95fc8d861..b1596740f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "getrandom" -version = "0.1.12" +version = "0.1.13" edition = "2018" authors = ["The Rand Project Developers"] license = "MIT OR Apache-2.0" From d3f4cc85fb11350d3832693ff21f4d47a8ed436b Mon Sep 17 00:00:00 2001 From: newpavlov Date: Thu, 24 Oct 2019 13:14:39 +0300 Subject: [PATCH 2/3] fixes --- CHANGELOG.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ebc7c83ba..4313075e9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -12,10 +12,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - If zero-length slice is passed to the `getrandom` function, always return `Ok(())` immediately without doing any calls to the underlying operating system . [#104] -- Bump `cfg-if` minimum version from 0.1.0 to 0.1.2. [#112] -- Use the `arandom` sysctl on NetBSD. [#115] +- Use the `kern.arandom` sysctl on NetBSD. [#115] ### Fixed +- Bump `cfg-if` minimum version from 0.1.0 to 0.1.2. [#112] - Typos and bad doc links. [#117] [#86]: https://github.com/rust-random/getrandom/pull/86 From 4c2c95085ae1a3cdf63256fd10a26cd63b7b901e Mon Sep 17 00:00:00 2001 From: newpavlov Date: Thu, 24 Oct 2019 13:16:23 +0300 Subject: [PATCH 3/3] remove space --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4313075e9..2f6e9f4eb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -11,7 +11,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Changed - If zero-length slice is passed to the `getrandom` function, always return `Ok(())` immediately without doing any calls to the underlying operating -system . [#104] +system. [#104] - Use the `kern.arandom` sysctl on NetBSD. [#115] ### Fixed