Skip to content

Commit 2e483d6

Browse files
authored
Release v0.2.10 (#364)
1 parent e57fcac commit 2e483d6

File tree

3 files changed

+13
-2
lines changed

3 files changed

+13
-2
lines changed

CHANGELOG.md

+11
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,16 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
55
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

7+
## [0.2.10] - 2023-06-06
8+
### Added
9+
- Support for PS Vita (`armv7-sony-vita-newlibeabihf`) [#359]
10+
11+
### Changed
12+
- Use getentropy from libc on Emscripten targets [#362]
13+
14+
[#359]: https://github.com/rust-random/getrandom/pull/359
15+
[#362]: https://github.com/rust-random/getrandom/pull/362
16+
717
## [0.2.9] - 2023-04-06
818
### Added
919
- AIX support [#282]
@@ -381,6 +391,7 @@ Publish initial implementation.
381391
## [0.0.0] - 2019-01-19
382392
Publish an empty template library.
383393

394+
[0.2.10]: https://github.com/rust-random/getrandom/compare/v0.2.9...v0.2.10
384395
[0.2.9]: https://github.com/rust-random/getrandom/compare/v0.2.8...v0.2.9
385396
[0.2.8]: https://github.com/rust-random/getrandom/compare/v0.2.7...v0.2.8
386397
[0.2.7]: https://github.com/rust-random/getrandom/compare/v0.2.6...v0.2.7

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "getrandom"
3-
version = "0.2.9" # Also update html_root_url in lib.rs when bumping this
3+
version = "0.2.10" # Also update html_root_url in lib.rs when bumping this
44
edition = "2018"
55
authors = ["The Rand Project Developers"]
66
license = "MIT OR Apache-2.0"

src/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -185,7 +185,7 @@
185185
#![doc(
186186
html_logo_url = "https://www.rust-lang.org/logos/rust-logo-128x128-blk.png",
187187
html_favicon_url = "https://www.rust-lang.org/favicon.ico",
188-
html_root_url = "https://docs.rs/getrandom/0.2.9"
188+
html_root_url = "https://docs.rs/getrandom/0.2.10"
189189
)]
190190
#![no_std]
191191
#![warn(rust_2018_idioms, unused_lifetimes, missing_docs)]

0 commit comments

Comments
 (0)