Skip to content

Commit 6dab38a

Browse files
committed
Release v0.2.2
1 parent 27b5172 commit 6dab38a

File tree

3 files changed

+10
-2
lines changed

3 files changed

+10
-2
lines changed

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,14 @@ 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.2] - 2021-01-19
8+
### Changed
9+
- Forward `rustc-dep-of-std` to dependencies. [#198]
10+
- Highlight feature-dependend functionality in documentation using the `doc_cfg` feature. [#200]
11+
12+
[#198]: https://github.com/rust-random/getrandom/pull/198
13+
[#200]: https://github.com/rust-random/getrandom/pull/200
14+
715
## [0.2.1] - 2021-01-03
816
### Changed
917
- Update `cfg-if` to v1.0. [#166]

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.1"
3+
version = "0.2.2" # 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
@@ -142,7 +142,7 @@
142142
#![doc(
143143
html_logo_url = "https://www.rust-lang.org/logos/rust-logo-128x128-blk.png",
144144
html_favicon_url = "https://www.rust-lang.org/favicon.ico",
145-
html_root_url = "https://rust-random.github.io/rand/"
145+
html_root_url = "https://docs.rs/getrandom/0.2.2"
146146
)]
147147
#![no_std]
148148
#![warn(rust_2018_idioms, unused_lifetimes, missing_docs)]

0 commit comments

Comments
 (0)