File tree Expand file tree Collapse file tree 3 files changed +12
-2
lines changed Expand file tree Collapse file tree 3 files changed +12
-2
lines changed Original file line number Diff line number Diff line change @@ -4,6 +4,16 @@ All notable changes to this project will be documented in this file.
4
4
The format is based on [ Keep a Changelog] ( http://keepachangelog.com/en/1.0.0/ )
5
5
and this project adheres to [ Semantic Versioning] ( https://semver.org/spec/v2.0.0.html ) .
6
6
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
+
7
17
## [ 0.2.2] - 2021-01-19
8
18
### Changed
9
19
- Forward ` rustc-dep-of-std ` to dependencies. [ #198 ]
Original file line number Diff line number Diff line change 1
1
[package ]
2
2
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
4
4
edition = " 2018"
5
5
authors = [" The Rand Project Developers" ]
6
6
license = " MIT OR Apache-2.0"
Original file line number Diff line number Diff line change 144
144
#![ doc(
145
145
html_logo_url = "https://www.rust-lang.org/logos/rust-logo-128x128-blk.png" ,
146
146
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 "
148
148
) ]
149
149
#![ no_std]
150
150
#![ warn( rust_2018_idioms, unused_lifetimes, missing_docs) ]
You can’t perform that action at this time.
0 commit comments