Skip to content

Commit 5bb5ca2

Browse files
authored
Merge pull request rust-random#1076 from dhardy/work
Rand v0.8, rand_distr v0.4
2 parents ecdf282 + 404e454 commit 5bb5ca2

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

CHANGELOG.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,8 @@ 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]
7+
## [0.4.0] - 2020-12-18
8+
- Bump `rand` to v0.8.0
89
- New `Geometric`, `StandardGeometric` and `Hypergeometric` distributions (#1062)
910
- New `Beta` sampling algorithm for improved performance and accuracy (#1000)
1011
- `Normal` and `LogNormal` now support `from_mean_cv` and `from_zscore` (#1044)

Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "rand_distr"
3-
version = "0.2.2"
3+
version = "0.4.0"
44
authors = ["The Rand Project Developers"]
55
license = "MIT OR Apache-2.0"
66
readme = "README.md"
@@ -16,7 +16,7 @@ edition = "2018"
1616
include = ["src/", "LICENSE-*", "README.md", "CHANGELOG.md", "COPYRIGHT"]
1717

1818
[dependencies]
19-
rand = { path = "..", version = "0.7", default-features = false }
19+
rand = { path = "..", version = "0.8.0", default-features = false }
2020
num-traits = { version = "0.2", default-features = false, features = ["libm"] }
2121

2222
[features]
@@ -27,6 +27,6 @@ alloc = ["rand/alloc"]
2727
[dev-dependencies]
2828
rand_pcg = { version = "0.3.0", path = "../rand_pcg" }
2929
# For inline examples
30-
rand = { path = "..", version = "0.7", default-features = false, features = ["std_rng", "std"] }
30+
rand = { path = "..", version = "0.8.0", default-features = false, features = ["std_rng", "std"] }
3131
# Histogram implementation for testing uniformity
3232
average = "0.10.3"

0 commit comments

Comments
 (0)