Skip to content

Commit 15aebf4

Browse files
committed
Prepare rand_pcg 0.3.0
1 parent 14c2016 commit 15aebf4

File tree

4 files changed

+7
-5
lines changed

4 files changed

+7
-5
lines changed

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ rand_chacha = { path = "rand_chacha", version = "0.2.3", default-features = fals
7474
rand_hc = { path = "rand_hc", version = "0.3.0", optional = true }
7575

7676
[dev-dependencies]
77-
rand_pcg = { path = "rand_pcg", version = "0.2" }
77+
rand_pcg = { path = "rand_pcg", version = "0.3.0" }
7878
# Only for benches:
7979
rand_hc = { path = "rand_hc", version = "0.3.0" }
8080
# Only to test serde1

rand_distr/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ std = ["alloc", "rand/std"]
2525
alloc = ["rand/alloc"]
2626

2727
[dev-dependencies]
28-
rand_pcg = { version = "0.2", path = "../rand_pcg" }
28+
rand_pcg = { version = "0.3.0", path = "../rand_pcg" }
2929
# For inline examples
3030
rand = { path = "..", version = "0.7", default-features = false, features = ["std_rng", "std"] }
3131
# Histogram implementation for testing uniformity

rand_pcg/CHANGELOG.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,10 @@ 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-
## [Unreleased]
8-
- Derive PartialEq+Eq for Lcg64Xsh32, Lcg128Xsl64, and Mcg128Xsl64 (#975)
7+
## [0.3.0] - 2020-12-08
8+
- Bump `rand_core` version to 0.6.0
9+
- Bump MSRV to 1.36 (#1011)
10+
- Derive PartialEq+Eq for Lcg64Xsh32, Lcg128Xsl64, and Mcg128Xsl64 (#979)
911

1012
## [0.2.1] - 2019-10-22
1113
- Bump `bincode` version to 1.1.4 to fix minimal-dependency builds

rand_pcg/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_pcg"
3-
version = "0.2.2"
3+
version = "0.3.0"
44
authors = ["The Rand Project Developers"]
55
license = "MIT OR Apache-2.0"
66
readme = "README.md"

0 commit comments

Comments
 (0)