Skip to content

Commit fcece06

Browse files
authored
Merge pull request #255 from rust-random/release/v0.2.6
Release v0.2.6
2 parents fcae1d2 + 0830ba6 commit fcece06

File tree

4 files changed

+15
-3
lines changed

4 files changed

+15
-3
lines changed

.github/workflows/tests.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -166,7 +166,8 @@ jobs:
166166
strategy:
167167
matrix:
168168
target: [
169-
sparcv9-sun-solaris,
169+
# See: https://github.com/rust-random/getrandom/issues/254
170+
# sparcv9-sun-solaris,
170171
x86_64-unknown-netbsd,
171172
]
172173
steps:

CHANGELOG.md

Lines changed: 11 additions & 0 deletions
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.6] - 2022-03-28
8+
### Added
9+
- Nintendo 3DS (`armv6k-nintendo-3ds`) support [#248]
10+
11+
### Changed
12+
- Retry `open` when interrupted [#252]
13+
14+
[#248]: https://github.com/rust-random/getrandom/pull/248
15+
[#252]: https://github.com/rust-random/getrandom/pull/252
16+
717
## [0.2.5] - 2022-02-22
818
### Added
919
- ESP-IDF targets (`*‑espidf`) support [#245]
@@ -281,6 +291,7 @@ Publish initial implementation.
281291
## [0.0.0] - 2019-01-19
282292
Publish an empty template library.
283293

294+
[0.2.5]: https://github.com/rust-random/getrandom/compare/v0.2.5...v0.2.6
284295
[0.2.5]: https://github.com/rust-random/getrandom/compare/v0.2.4...v0.2.5
285296
[0.2.4]: https://github.com/rust-random/getrandom/compare/v0.2.3...v0.2.4
286297
[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.5" # Also update html_root_url in lib.rs when bumping this
3+
version = "0.2.6" # 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.5"
152+
html_root_url = "https://docs.rs/getrandom/0.2.6"
153153
)]
154154
#![no_std]
155155
#![warn(rust_2018_idioms, unused_lifetimes, missing_docs)]

0 commit comments

Comments
 (0)