Skip to content

Commit cf65e83

Browse files
authored
Release v0.2.15 (#419)
1 parent a24538f commit cf65e83

File tree

3 files changed

+18
-2
lines changed

3 files changed

+18
-2
lines changed

CHANGELOG.md

+16
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,21 @@ 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.15] - 2024-05-06
8+
### Added
9+
- Apple visionOS support [#410]
10+
11+
### Changed
12+
- Use `libc::getrandom` on DragonflyBSD, FreeBSD, illumos, and Solaris [#411] [#416] [#417] [#420]
13+
- Unify `libc::getentropy`-based implementations [#418]
14+
15+
[#410]: https://github.com/rust-random/getrandom/pull/410
16+
[#411]: https://github.com/rust-random/getrandom/pull/411
17+
[#416]: https://github.com/rust-random/getrandom/pull/416
18+
[#417]: https://github.com/rust-random/getrandom/pull/417
19+
[#418]: https://github.com/rust-random/getrandom/pull/418
20+
[#420]: https://github.com/rust-random/getrandom/pull/420
21+
722
## [0.2.14] - 2024-04-08
823
### Fixed
924
- Enable `/dev/urandom` fallback for MUSL-based Linux targets [#408]
@@ -439,6 +454,7 @@ Publish initial implementation.
439454
## [0.0.0] - 2019-01-19
440455
Publish an empty template library.
441456

457+
[0.2.15]: https://github.com/rust-random/getrandom/compare/v0.2.14...v0.2.15
442458
[0.2.14]: https://github.com/rust-random/getrandom/compare/v0.2.13...v0.2.14
443459
[0.2.13]: https://github.com/rust-random/getrandom/compare/v0.2.12...v0.2.13
444460
[0.2.12]: https://github.com/rust-random/getrandom/compare/v0.2.11...v0.2.12

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.14" # Also update html_root_url in lib.rs when bumping this
3+
version = "0.2.15" # 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
@@ -201,7 +201,7 @@
201201
#![doc(
202202
html_logo_url = "https://www.rust-lang.org/logos/rust-logo-128x128-blk.png",
203203
html_favicon_url = "https://www.rust-lang.org/favicon.ico",
204-
html_root_url = "https://docs.rs/getrandom/0.2.14"
204+
html_root_url = "https://docs.rs/getrandom/0.2.15"
205205
)]
206206
#![no_std]
207207
#![warn(rust_2018_idioms, unused_lifetimes, missing_docs)]

0 commit comments

Comments
 (0)