From 85ecf6e2c5ce2be1e4cd40a9981f05f28fd610d3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=90=D1=80=D1=82=D1=91=D0=BC=20=D0=9F=D0=B0=D0=B2=D0=BB?= =?UTF-8?q?=D0=BE=D0=B2=20=5BArtyom=20Pavlov=5D?= Date: Sun, 4 Apr 2021 06:19:48 +0300 Subject: [PATCH 1/2] Release v0.2.3 --- CHANGELOG.md | 8 ++++++++ Cargo.toml | 2 +- src/lib.rs | 2 +- 3 files changed, 10 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c3ca728f..f06737cc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,14 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [0.2.3] - 2021-04-10 +### Changed +- Replace build.rs with link attributes. [#205] +- Add support for getrandom syscall on DragonFly BSD. [#210] + +[#205]: https://github.com/rust-random/getrandom/pull/205 +[#210]: https://github.com/rust-random/getrandom/pull/210 + ## [0.2.2] - 2021-01-19 ### Changed - Forward `rustc-dep-of-std` to dependencies. [#198] diff --git a/Cargo.toml b/Cargo.toml index dabf016f..4ab9ad6b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "getrandom" -version = "0.2.2" # Also update html_root_url in lib.rs when bumping this +version = "0.2.3" # Also update html_root_url in lib.rs when bumping this edition = "2018" authors = ["The Rand Project Developers"] license = "MIT OR Apache-2.0" diff --git a/src/lib.rs b/src/lib.rs index bcee9d0f..13117649 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -144,7 +144,7 @@ #![doc( html_logo_url = "https://www.rust-lang.org/logos/rust-logo-128x128-blk.png", html_favicon_url = "https://www.rust-lang.org/favicon.ico", - html_root_url = "https://docs.rs/getrandom/0.2.2" + html_root_url = "https://docs.rs/getrandom/0.2.3" )] #![no_std] #![warn(rust_2018_idioms, unused_lifetimes, missing_docs)] From 2e0a185dc7ca940417ee1275152615979834d1a3 Mon Sep 17 00:00:00 2001 From: Artyom Pavlov Date: Fri, 14 May 2021 12:09:50 +0300 Subject: [PATCH 2/2] update changelog with #215 --- CHANGELOG.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index f06737cc..0ae351a0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,9 +8,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Changed - Replace build.rs with link attributes. [#205] - Add support for getrandom syscall on DragonFly BSD. [#210] +- Improve Node.js detection. [#215] [#205]: https://github.com/rust-random/getrandom/pull/205 [#210]: https://github.com/rust-random/getrandom/pull/210 +[#215]: https://github.com/rust-random/getrandom/pull/215 ## [0.2.2] - 2021-01-19 ### Changed