Skip to content

Commit d650199

Browse files
committed
Merge branch '0.5'
2 parents ea8efea + 317651c commit d650199

File tree

4 files changed

+6
-3
lines changed

4 files changed

+6
-3
lines changed

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ serde1 = ["rand_core/serde1", "rand_isaac/serde1", "rand_xorshift/serde1"] # ena
3131
members = ["rand_core", "rand_isaac", "rand_xorshift"]
3232

3333
[dependencies]
34-
rand_core = { path = "rand_core", version = "0.2", default-features = false }
34+
rand_core = { path = "rand_core", version = "0.3", default-features = false }
3535
# only for deprecations and benches:
3636
rand_isaac = { path = "rand_isaac", version = "0.1" }
3737
rand_xorshift = { path = "rand_xorshift", version = "0.1" }

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 Rand Project Developers", "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)