Skip to content

Commit 63f861c

Browse files
authored
Release v0.2.7 (#264)
Signed-off-by: Joe Richey <joerichey@google.com>
1 parent c82a522 commit 63f861c

File tree

3 files changed

+19
-3
lines changed

3 files changed

+19
-3
lines changed

CHANGELOG.md

Lines changed: 17 additions & 1 deletion
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.7] - 2022-06-14
8+
### Changed
9+
- Update `wasi` dependency to `0.11` [#253]
10+
11+
### Fixed
12+
- Use `AtomicPtr` instead of `AtomicUsize` for Strict Provenance compatibility. [#263]
13+
14+
### Documentation
15+
- Add comments explaining use of fallback mechanisms [#257] [#260]
16+
17+
[#263]: https://github.com/rust-random/getrandom/pull/263
18+
[#260]: https://github.com/rust-random/getrandom/pull/260
19+
[#253]: https://github.com/rust-random/getrandom/pull/253
20+
[#257]: https://github.com/rust-random/getrandom/pull/257
21+
722
## [0.2.6] - 2022-03-28
823
### Added
924
- Nintendo 3DS (`armv6k-nintendo-3ds`) support [#248]
@@ -291,7 +306,8 @@ Publish initial implementation.
291306
## [0.0.0] - 2019-01-19
292307
Publish an empty template library.
293308

294-
[0.2.5]: https://github.com/rust-random/getrandom/compare/v0.2.5...v0.2.6
309+
[0.2.7]: https://github.com/rust-random/getrandom/compare/v0.2.6...v0.2.7
310+
[0.2.6]: https://github.com/rust-random/getrandom/compare/v0.2.5...v0.2.6
295311
[0.2.5]: https://github.com/rust-random/getrandom/compare/v0.2.4...v0.2.5
296312
[0.2.4]: https://github.com/rust-random/getrandom/compare/v0.2.3...v0.2.4
297313
[0.2.3]: https://github.com/rust-random/getrandom/compare/v0.2.2...v0.2.3

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "getrandom"
3-
version = "0.2.6" # Also update html_root_url in lib.rs when bumping this
3+
version = "0.2.7" # 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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,7 @@
149149
#![doc(
150150
html_logo_url = "https://www.rust-lang.org/logos/rust-logo-128x128-blk.png",
151151
html_favicon_url = "https://www.rust-lang.org/favicon.ico",
152-
html_root_url = "https://docs.rs/getrandom/0.2.6"
152+
html_root_url = "https://docs.rs/getrandom/0.2.7"
153153
)]
154154
#![no_std]
155155
#![warn(rust_2018_idioms, unused_lifetimes, missing_docs)]

0 commit comments

Comments
 (0)