Skip to content

Commit 1fde409

Browse files
committed
Release v0.2.8
Also updates the changelog Signed-off-by: Joe Richey <joerichey@google.com>
1 parent cfdad53 commit 1fde409

File tree

3 files changed

+27
-2
lines changed

3 files changed

+27
-2
lines changed

CHANGELOG.md

+25
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,30 @@ 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.8] - 2022-10-20
8+
### Added
9+
10+
- [Web Crypto API] can now be used on Node.js if avalible [#284]
11+
- Added benckmarks to track buffer initialization cost [#272]
12+
13+
### Fixed
14+
15+
- Use `$crate` in `register_custom_getrandom!` [#270]
16+
17+
### Documentation
18+
19+
- Add information about enabling `js` feature [#280]
20+
- Fix link to `wasm-bindgen` [#278]
21+
- Document the varied implementaitons for underlying randomness sources [#276]
22+
23+
[Web Crypto API]: https://developer.mozilla.org/en-US/docs/Web/API/Web_Crypto_API
24+
[#284]: https://github.com/rust-random/getrandom/pull/284
25+
[#272]: https://github.com/rust-random/getrandom/pull/272
26+
[#270]: https://github.com/rust-random/getrandom/pull/270
27+
[#280]: https://github.com/rust-random/getrandom/pull/280
28+
[#278]: https://github.com/rust-random/getrandom/pull/278
29+
[#276]: https://github.com/rust-random/getrandom/pull/276
30+
731
## [0.2.7] - 2022-06-14
832
### Changed
933
- Update `wasi` dependency to `0.11` [#253]
@@ -306,6 +330,7 @@ Publish initial implementation.
306330
## [0.0.0] - 2019-01-19
307331
Publish an empty template library.
308332

333+
[0.2.8]: https://github.com/rust-random/getrandom/compare/v0.2.7...v0.2.8
309334
[0.2.7]: https://github.com/rust-random/getrandom/compare/v0.2.6...v0.2.7
310335
[0.2.6]: https://github.com/rust-random/getrandom/compare/v0.2.5...v0.2.6
311336
[0.2.5]: https://github.com/rust-random/getrandom/compare/v0.2.4...v0.2.5

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "getrandom"
3-
version = "0.2.7" # Also update html_root_url in lib.rs when bumping this
3+
version = "0.2.8" # 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

+1-1
Original file line numberDiff line numberDiff line change
@@ -178,7 +178,7 @@
178178
#![doc(
179179
html_logo_url = "https://www.rust-lang.org/logos/rust-logo-128x128-blk.png",
180180
html_favicon_url = "https://www.rust-lang.org/favicon.ico",
181-
html_root_url = "https://docs.rs/getrandom/0.2.7"
181+
html_root_url = "https://docs.rs/getrandom/0.2.8"
182182
)]
183183
#![no_std]
184184
#![warn(rust_2018_idioms, unused_lifetimes, missing_docs)]

0 commit comments

Comments
 (0)