Skip to content

Commit 459d863

Browse files
committed
Prepare rand_chacha 0.3.0 release
1 parent 15aebf4 commit 459d863

File tree

3 files changed

+8
-4
lines changed

3 files changed

+8
-4
lines changed

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ libc = { version = "0.2.22", optional = true, default-features = false }
6969
# Emscripten does not support 128-bit integers, which are used by ChaCha code.
7070
# We work around this by using a different RNG.
7171
[target.'cfg(not(target_os = "emscripten"))'.dependencies]
72-
rand_chacha = { path = "rand_chacha", version = "0.2.3", default-features = false, optional = true }
72+
rand_chacha = { path = "rand_chacha", version = "0.3.0", default-features = false, optional = true }
7373
[target.'cfg(target_os = "emscripten")'.dependencies]
7474
rand_hc = { path = "rand_hc", version = "0.3.0", optional = true }
7575

rand_chacha/CHANGELOG.md

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,12 @@ 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-
- impl PartialEq+Eq for ChaChaXRng and ChaChaXCore (#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+
- Remove usage of deprecated feature "simd" of `ppv-lite86` (#979), then revert
11+
this change (#1023) since SIMD is only enabled by default from `ppv-lite86 v0.2.10`
12+
- impl PartialEq+Eq for ChaChaXRng and ChaChaXCore (#979)
913
- Fix panic on block counter wrap that was occurring in debug builds (#980)
1014

1115
## [0.2.2] - 2020-03-09

rand_chacha/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_chacha"
3-
version = "0.2.3"
3+
version = "0.3.0"
44
authors = ["The Rand Project Developers", "The Rust Project Developers", "The CryptoCorrosion Contributors"]
55
license = "MIT OR Apache-2.0"
66
readme = "README.md"

0 commit comments

Comments
 (0)