Skip to content

Commit 8dd020c

Browse files
committed
Prepare rand_pcg 0.2.0 release
1 parent 18d5584 commit 8dd020c

File tree

4 files changed

+9
-4
lines changed

4 files changed

+9
-4
lines changed

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ members = [
5555

5656
[dependencies]
5757
rand_core = { path = "rand_core", version = "0.5" }
58-
rand_pcg = { path = "rand_pcg", version = "0.1", optional = true }
58+
rand_pcg = { path = "rand_pcg", version = "0.2", optional = true }
5959
# Do not depend on 'getrandom_package' directly; use the 'getrandom' feature!
6060
getrandom_package = { version = "0.1.1", package = "getrandom", optional = true }
6161
log = { version = "0.4", optional = true }
@@ -79,7 +79,7 @@ rand_chacha = { path = "rand_chacha", version = "0.2" }
7979
rand_hc = { path = "rand_hc", version = "0.2" }
8080

8181
[dev-dependencies]
82-
rand_pcg = { path = "rand_pcg", version = "0.1" }
82+
rand_pcg = { path = "rand_pcg", version = "0.2" }
8383
# Only for benches:
8484
rand_hc = { path = "rand_hc", version = "0.2" }
8585
rand_xoshiro = { path = "rand_xoshiro", version = "0.3" }

rand_distr/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,6 @@ appveyor = { repository = "rust-random/rand" }
2222
rand = { path = "..", version = ">=0.5, <=0.7.0-pre.9" }
2323

2424
[dev-dependencies]
25-
rand_pcg = { version = "0.1", path = "../rand_pcg" }
25+
rand_pcg = { version = "0.2", path = "../rand_pcg" }
2626
# Histogram implementation for testing uniformity
2727
average = "0.9.2"

rand_pcg/CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,11 @@ 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.0] - 2019-06-12
8+
- Add `Lcg128Xsl64` aka `Pcg64`
9+
- Bump minor crate version since rand_core bump is a breaking change
10+
- Switch to Edition 2018
11+
712
## [0.1.2] - 2019-02-23
813
- require `bincode` 1.1.2 for i128 auto-detection
914
- make `bincode` a dev-dependency again #663

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

0 commit comments

Comments
 (0)