From 2e483d68aaa57168a84489349d6473b492e05478 Mon Sep 17 00:00:00 2001 From: Artyom Pavlov Date: Tue, 6 Jun 2023 18:07:03 +0300 Subject: [PATCH] Release v0.2.10 (#364) --- CHANGELOG.md | 11 +++++++++++ Cargo.toml | 2 +- src/lib.rs | 2 +- 3 files changed, 13 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6ac59ac1..1b57e187 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,16 @@ 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.10] - 2023-06-06 +### Added +- Support for PS Vita (`armv7-sony-vita-newlibeabihf`) [#359] + +### Changed +- Use getentropy from libc on Emscripten targets [#362] + +[#359]: https://github.com/rust-random/getrandom/pull/359 +[#362]: https://github.com/rust-random/getrandom/pull/362 + ## [0.2.9] - 2023-04-06 ### Added - AIX support [#282] @@ -381,6 +391,7 @@ Publish initial implementation. ## [0.0.0] - 2019-01-19 Publish an empty template library. +[0.2.10]: https://github.com/rust-random/getrandom/compare/v0.2.9...v0.2.10 [0.2.9]: https://github.com/rust-random/getrandom/compare/v0.2.8...v0.2.9 [0.2.8]: https://github.com/rust-random/getrandom/compare/v0.2.7...v0.2.8 [0.2.7]: https://github.com/rust-random/getrandom/compare/v0.2.6...v0.2.7 diff --git a/Cargo.toml b/Cargo.toml index 6653f1e4..b0726ec8 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "getrandom" -version = "0.2.9" # Also update html_root_url in lib.rs when bumping this +version = "0.2.10" # 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 e6d77249..cd8a9602 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -185,7 +185,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.9" + html_root_url = "https://docs.rs/getrandom/0.2.10" )] #![no_std] #![warn(rust_2018_idioms, unused_lifetimes, missing_docs)]