Skip to content

Commit de51e29

Browse files
authored
Release v0.2.3 (#211)
1 parent 120a1d7 commit de51e29

File tree

3 files changed

+12
-2
lines changed

3 files changed

+12
-2
lines changed

CHANGELOG.md

Lines changed: 10 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.3] - 2021-04-10
8+
### Changed
9+
- Replace build.rs with link attributes. [#205]
10+
- Add support for getrandom syscall on DragonFly BSD. [#210]
11+
- Improve Node.js detection. [#215]
12+
13+
[#205]: https://github.com/rust-random/getrandom/pull/205
14+
[#210]: https://github.com/rust-random/getrandom/pull/210
15+
[#215]: https://github.com/rust-random/getrandom/pull/215
16+
717
## [0.2.2] - 2021-01-19
818
### Changed
919
- Forward `rustc-dep-of-std` to dependencies. [#198]

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.2" # Also update html_root_url in lib.rs when bumping this
3+
version = "0.2.3" # 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
@@ -144,7 +144,7 @@
144144
#![doc(
145145
html_logo_url = "https://www.rust-lang.org/logos/rust-logo-128x128-blk.png",
146146
html_favicon_url = "https://www.rust-lang.org/favicon.ico",
147-
html_root_url = "https://docs.rs/getrandom/0.2.2"
147+
html_root_url = "https://docs.rs/getrandom/0.2.3"
148148
)]
149149
#![no_std]
150150
#![warn(rust_2018_idioms, unused_lifetimes, missing_docs)]

0 commit comments

Comments
 (0)