Skip to content

Commit b625985

Browse files
authored
Release 0.2.17 (#774)
1 parent e7200ad commit b625985

File tree

3 files changed

+12
-9
lines changed

3 files changed

+12
-9
lines changed

CHANGELOG.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,13 @@ 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.17] - unreleased
7+
## [0.2.17] - 2026-01-12
88
### Fixed
9+
- Use `doc_cfg` instead of `doc_auto_cfg` (partial backport of [#732]) [#768]
910
- `BCryptGenRandom` signature [#778]
1011

12+
[#732]: https://github.com/rust-random/getrandom/pull/732
13+
[#768]: https://github.com/rust-random/getrandom/pull/768
1114
[#778]: https://github.com/rust-random/getrandom/pull/778
1215

1316
## [0.2.16] - 2025-04-22

Cargo.toml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "getrandom"
3-
version = "0.2.16" # Also update html_root_url in lib.rs when bumping this
3+
version = "0.2.17" # 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"
@@ -58,10 +58,10 @@ rustdoc-args = ["--cfg", "docsrs"]
5858
# workaround for https://github.com/cross-rs/cross/issues/1345
5959
[package.metadata.cross.target.x86_64-unknown-netbsd]
6060
pre-build = [
61-
"mkdir -p /tmp/netbsd",
62-
"curl https://cdn.netbsd.org/pub/NetBSD/NetBSD-9.2/amd64/binary/sets/base.tar.xz -O",
63-
"tar -C /tmp/netbsd -xJf base.tar.xz",
64-
"cp /tmp/netbsd/usr/lib/libexecinfo.so /usr/local/x86_64-unknown-netbsd/lib",
65-
"rm base.tar.xz",
66-
"rm -rf /tmp/netbsd",
61+
"mkdir -p /tmp/netbsd",
62+
"curl https://cdn.netbsd.org/pub/NetBSD/NetBSD-9.2/amd64/binary/sets/base.tar.xz -O",
63+
"tar -C /tmp/netbsd -xJf base.tar.xz",
64+
"cp /tmp/netbsd/usr/lib/libexecinfo.so /usr/local/x86_64-unknown-netbsd/lib",
65+
"rm base.tar.xz",
66+
"rm -rf /tmp/netbsd",
6767
]

src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -204,7 +204,7 @@
204204
#![doc(
205205
html_logo_url = "https://www.rust-lang.org/logos/rust-logo-128x128-blk.png",
206206
html_favicon_url = "https://www.rust-lang.org/favicon.ico",
207-
html_root_url = "https://docs.rs/getrandom/0.2.16"
207+
html_root_url = "https://docs.rs/getrandom/0.2.17"
208208
)]
209209
#![no_std]
210210
#![warn(rust_2018_idioms, unused_lifetimes, missing_docs)]

0 commit comments

Comments
 (0)