From cf65e83f9df8954df101320de86f80dccfc6b68a Mon Sep 17 00:00:00 2001 From: Artyom Pavlov Date: Mon, 6 May 2024 15:29:21 +0300 Subject: [PATCH] Release v0.2.15 (#419) --- CHANGELOG.md | 16 ++++++++++++++++ Cargo.toml | 2 +- src/lib.rs | 2 +- 3 files changed, 18 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index fb9d94b7..b6763b58 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,21 @@ 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.2.15] - 2024-05-06 +### Added +- Apple visionOS support [#410] + +### Changed +- Use `libc::getrandom` on DragonflyBSD, FreeBSD, illumos, and Solaris [#411] [#416] [#417] [#420] +- Unify `libc::getentropy`-based implementations [#418] + +[#410]: https://github.com/rust-random/getrandom/pull/410 +[#411]: https://github.com/rust-random/getrandom/pull/411 +[#416]: https://github.com/rust-random/getrandom/pull/416 +[#417]: https://github.com/rust-random/getrandom/pull/417 +[#418]: https://github.com/rust-random/getrandom/pull/418 +[#420]: https://github.com/rust-random/getrandom/pull/420 + ## [0.2.14] - 2024-04-08 ### Fixed - Enable `/dev/urandom` fallback for MUSL-based Linux targets [#408] @@ -439,6 +454,7 @@ Publish initial implementation. ## [0.0.0] - 2019-01-19 Publish an empty template library. +[0.2.15]: https://github.com/rust-random/getrandom/compare/v0.2.14...v0.2.15 [0.2.14]: https://github.com/rust-random/getrandom/compare/v0.2.13...v0.2.14 [0.2.13]: https://github.com/rust-random/getrandom/compare/v0.2.12...v0.2.13 [0.2.12]: https://github.com/rust-random/getrandom/compare/v0.2.11...v0.2.12 diff --git a/Cargo.toml b/Cargo.toml index 0d68e1ff..4de6dcfd 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "getrandom" -version = "0.2.14" # Also update html_root_url in lib.rs when bumping this +version = "0.2.15" # Also update html_root_url in lib.rs when bumping this edition = "2018" authors = ["The Rand Project Developers"] license = "MIT OR Apache-2.0" diff --git a/src/lib.rs b/src/lib.rs index 1305f2bd..bc3695b6 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -201,7 +201,7 @@ #![doc( html_logo_url = "https://www.rust-lang.org/logos/rust-logo-128x128-blk.png", html_favicon_url = "https://www.rust-lang.org/favicon.ico", - html_root_url = "https://docs.rs/getrandom/0.2.14" + html_root_url = "https://docs.rs/getrandom/0.2.15" )] #![no_std] #![warn(rust_2018_idioms, unused_lifetimes, missing_docs)]