Skip to content

Commit 6add2fd

Browse files
authored
Merge pull request #654 from dhardy/master
Prepare rand_isaac 0.1.1
2 parents 73613ff + 4401673 commit 6add2fd

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

rand_isaac/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,5 +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.1.1] - 2018-11-26
8+
- Fix `rand_core` version requirement
9+
- Fix doc links
10+
711
## [0.1.0] - 2018-10-17
812
- Pulled out of the Rand crate

rand_isaac/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "rand_isaac"
3-
version = "0.1.0"
3+
version = "0.1.1"
44
authors = ["The Rand Project Developers", "The Rust Project Developers"]
55
license = "MIT/Apache-2.0"
66
readme = "README.md"
@@ -21,7 +21,7 @@ appveyor = { repository = "rust-random/rand" }
2121
serde1 = ["serde", "serde_derive", "rand_core/serde1"]
2222

2323
[dependencies]
24-
rand_core = { path = "../rand_core", version = ">=0.2, <0.4", default-features=false }
24+
rand_core = { path = "../rand_core", version = "0.3", default-features=false }
2525
serde = { version = "1", optional = true }
2626
serde_derive = { version = "^1.0.38", optional = true }
2727

0 commit comments

Comments
 (0)