Skip to content

Commit 33cd28b

Browse files
committed
rand_pcg: bump bincode to 1.1.4
1 parent 2fc64ed commit 33cd28b

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

rand_pcg/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+
## Unreleased
8+
- Bump `bincode` version to 1.1.4 to fix minimal-dependency builds
9+
710
## [0.2.0] - 2019-06-12
811
- Add `Lcg128Xsl64` aka `Pcg64`
912
- Bump minor crate version since rand_core bump is a breaking change

rand_pcg/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,5 +28,5 @@ serde = { version = "1", features = ["derive"], optional = true }
2828
[dev-dependencies]
2929
# This is for testing serde, unfortunately we can't specify feature-gated dev
3030
# deps yet, see: https://github.com/rust-lang/cargo/issues/1596
31-
# We require at least 1.1.2 for i128 auto-detection
32-
bincode = { version = "1.1.2" }
31+
# Versions prior to 1.1.4 had incorrect minimal dependencies.
32+
bincode = { version = "1.1.4" }

0 commit comments

Comments
 (0)