Skip to content

Commit 853c1dc

Browse files
authored
Release v0.2.11 (#379)
1 parent 4c094c3 commit 853c1dc

File tree

3 files changed

+15
-2
lines changed

3 files changed

+15
-2
lines changed

CHANGELOG.md

+13
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,18 @@ 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.11] - 2023-11-08
8+
### Added
9+
- GNU/Hurd support [#370]
10+
11+
### Changed
12+
- Renamed `__getrandom_internal` to `__GETRANDOM_INTERNAL` [#369]
13+
- Updated link to Hermit docs [#374]
14+
15+
[#369]: https://github.com/rust-random/getrandom/pull/369
16+
[#370]: https://github.com/rust-random/getrandom/pull/370
17+
[#374]: https://github.com/rust-random/getrandom/pull/374
18+
719
## [0.2.10] - 2023-06-06
820
### Added
921
- Support for PS Vita (`armv7-sony-vita-newlibeabihf`) [#359]
@@ -391,6 +403,7 @@ Publish initial implementation.
391403
## [0.0.0] - 2019-01-19
392404
Publish an empty template library.
393405

406+
[0.2.11]: https://github.com/rust-random/getrandom/compare/v0.2.10...v0.2.11
394407
[0.2.10]: https://github.com/rust-random/getrandom/compare/v0.2.9...v0.2.10
395408
[0.2.9]: https://github.com/rust-random/getrandom/compare/v0.2.8...v0.2.9
396409
[0.2.8]: https://github.com/rust-random/getrandom/compare/v0.2.7...v0.2.8

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.10" # Also update html_root_url in lib.rs when bumping this
3+
version = "0.2.11" # 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
@@ -187,7 +187,7 @@
187187
#![doc(
188188
html_logo_url = "https://www.rust-lang.org/logos/rust-logo-128x128-blk.png",
189189
html_favicon_url = "https://www.rust-lang.org/favicon.ico",
190-
html_root_url = "https://docs.rs/getrandom/0.2.10"
190+
html_root_url = "https://docs.rs/getrandom/0.2.11"
191191
)]
192192
#![no_std]
193193
#![warn(rust_2018_idioms, unused_lifetimes, missing_docs)]

0 commit comments

Comments
 (0)