Skip to content

Commit 1bfc53d

Browse files
committed
Update changelogs and bump version numbers
1 parent 4534311 commit 1bfc53d

File tree

10 files changed

+24
-10
lines changed

10 files changed

+24
-10
lines changed

CHANGELOG.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -8,19 +8,19 @@ A [separate changelog is kept for rand_core](rand_core/CHANGELOG.md).
88

99
You may also find the [Upgrade Guide](https://rust-random.github.io/book/update.html) useful.
1010

11-
## [Unreleased]
11+
## [0.8.4] - 2021-06-15
1212
### Additions
1313
- Use const-generics to support arrays of all sizes (#1104)
1414
- Implement `Clone` and `Copy` for `Alphanumeric` (#1126)
1515
- Add `Distribution::map` to derive a distribution using a closure (#1129)
16+
- Add `Slice` distribution (#1107)
17+
- Add `DistString` trait with impls for `Standard` and `Alphanumeric` (#1133)
1618

1719
### Other
1820
- Reorder asserts in `Uniform` float distributions for easier debugging of non-finite arguments
1921
(#1094, #1108)
2022
- Add range overflow check in `Uniform` float distributions (#1108)
21-
22-
### Distributions
23-
- Add slice distribution (#1107)
23+
- Deprecate `rngs::adapter::ReadRng` (#1130)
2424

2525
## [0.8.3] - 2021-01-25
2626
### Fixes

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "rand"
3-
version = "0.8.3"
3+
version = "0.8.4"
44
authors = ["The Rand Project Developers", "The Rust Project Developers"]
55
license = "MIT OR Apache-2.0"
66
readme = "README.md"

rand_core/CHANGELOG.md

+5
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.6.3] - 2021-06-15
8+
### Changed
9+
- Improved bound for `serde` impls on `BlockRng` (#1130)
10+
- Minor doc additions (#1118)
11+
712
## [0.6.2] - 2021-02-12
813
### Fixed
914
- Fixed assertions in `le::read_u32_into` and `le::read_u64_into` which could

rand_core/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "rand_core"
3-
version = "0.6.2"
3+
version = "0.6.3"
44
authors = ["The Rand Project Developers", "The Rust Project Developers"]
55
license = "MIT OR Apache-2.0"
66
readme = "README.md"

rand_distr/CHANGELOG.md

+3-1
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,14 @@ 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.1] - 2021-06-15
8+
- Empirically test PDF of normal distribution (#1121)
89
- Correctly document `no_std` support (#1100)
910
- Add `std_math` feature to prefer `std` over `libm` for floating point math (#1100)
1011
- Add mean and std_dev accessors to Normal (#1114)
1112
- Make sure all distributions and their error types implement `Error`, `Display`, `Clone`,
1213
`Copy`, `PartialEq` and `Eq` as appropriate (#1126)
14+
- Port benchmarks to use Criterion crate (#1116)
1315

1416
## [0.4.0] - 2020-12-18
1517
- Bump `rand` to v0.8.0

rand_distr/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "rand_distr"
3-
version = "0.4.0"
3+
version = "0.4.1"
44
authors = ["The Rand Project Developers"]
55
license = "MIT OR Apache-2.0"
66
readme = "README.md"

rand_hc/CHANGELOG.md

+3
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+
## [0.3.1] - 2021-06-15
8+
- Adjust crate links
9+
710
## [0.3.0] - 2020-12-08
811
- Bump `rand_core` version to 0.6.0
912
- Bump MSRV to 1.36 (#1011)

rand_hc/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "rand_hc"
3-
version = "0.3.0"
3+
version = "0.3.1"
44
authors = ["The Rand Project Developers"]
55
license = "MIT OR Apache-2.0"
66
readme = "README.md"

rand_pcg/CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -4,6 +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+
## [0.3.1] - 2021-06-15
8+
- Add `advance` methods to RNGs (#1111)
9+
- Document dependencies between streams (#1122)
10+
711
## [0.3.0] - 2020-12-08
812
- Bump `rand_core` version to 0.6.0
913
- Bump MSRV to 1.36 (#1011)

rand_pcg/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "rand_pcg"
3-
version = "0.3.0"
3+
version = "0.3.1"
44
authors = ["The Rand Project Developers"]
55
license = "MIT OR Apache-2.0"
66
readme = "README.md"

0 commit comments

Comments
 (0)