Skip to content

Commit 61b20c4

Browse files
committed
Prepare rand_core 0.3 release
1 parent 459571c commit 61b20c4

File tree

3 files changed

+5
-2
lines changed

3 files changed

+5
-2
lines changed

rand_core/CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,9 @@ 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.3.0] - 2018-09-24
8+
- Add `SeedableRng::seed_from_u64` for convenient seeding. (#537)
9+
710
## [0.2.1] - 2018-06-08
811
- References to a `CryptoRng` now also implement `CryptoRng`. (#470)
912

rand_core/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "rand_core"
3-
version = "0.2.1" # NB: When modifying, also modify html_root_url in lib.rs
3+
version = "0.3.0" # NB: When modifying, also modify html_root_url in lib.rs
44
authors = ["The Rust Project Developers"]
55
license = "MIT/Apache-2.0"
66
readme = "README.md"

rand_core/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
3535
#![doc(html_logo_url = "https://www.rust-lang.org/logos/rust-logo-128x128-blk.png",
3636
html_favicon_url = "https://www.rust-lang.org/favicon.ico",
37-
html_root_url = "https://docs.rs/rand_core/0.2.1")]
37+
html_root_url = "https://docs.rs/rand_core/0.3.0")]
3838

3939
#![deny(missing_docs)]
4040
#![deny(missing_debug_implementations)]

0 commit comments

Comments
 (0)