Skip to content

Commit d4a6225

Browse files
committed
Deprecate rand_isaac
1 parent be9aa09 commit d4a6225

4 files changed

Lines changed: 11 additions & 2 deletions

File tree

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

rand_isaac/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.5.1] - 2026-05-19
8+
Deprecate crate `rand_isaac` ([#113]).
9+
10+
[#113]: https://github.com/rust-random/rngs/pull/113
11+
712
## [0.5.0] - 2026-02-01
813
### Value-breaking changes
914
- Drop use of half-used words in `Isaac64Rng::next_u32` ([#82])

rand_isaac/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_isaac"
3-
version = "0.5.0"
3+
version = "0.5.1"
44
authors = ["The Rand Project Developers", "The Rust Project Developers"]
55
license = "MIT OR Apache-2.0"
66
readme = "README.md"

rand_isaac/src/lib.rs

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,10 @@
2323
clippy::identity_op
2424
)]
2525
#![cfg_attr(not(all(feature = "serde", test)), no_std)]
26+
#![deprecated(
27+
since = "0.5.1",
28+
note = "The rand_isaac crate is no longer maintained; we suggest switching to chacha20 or rand_hc"
29+
)]
2630

2731
pub mod isaac;
2832
pub mod isaac64;

0 commit comments

Comments
 (0)