diff --git a/README.md b/README.md index a4736c361..0ec4f22dd 100644 --- a/README.md +++ b/README.md @@ -70,7 +70,7 @@ as: ```toml [dependencies] -rayon = "1.10" +rayon = "1.11" ``` To use the parallel iterator APIs, a number of traits have to be in diff --git a/RELEASES.md b/RELEASES.md index 263e3ee02..6ee62cffa 100644 --- a/RELEASES.md +++ b/RELEASES.md @@ -1,6 +1,15 @@ -# Release rayon 1.11.0 / rayon-core 1.13.0 +# Release rayon 1.11.0 / rayon-core 1.13.0 (2025-08-12) - The minimum supported `rustc` is now 1.80. +- `iter::repeatn` has been renamed to `iter::repeat_n` to match the name + stabilized in the standard library. The old name still exists as a deprecated + function for compatibility. +- Fixed a bug in `in_place_scope` when the default global registry uses the + current thread, like on WebAssembly without threading support. +- `binary_heap::Iter` no longer requires a temporary allocation. +- Relaxed trait bounds on many of the public structs. +- Implemented `IntoParallelIterator for Box<[T]>` and its references. +- Implemented `FromParallelIterator<_> for Box` via `String`. # Release rayon 1.10.0 (2024-03-23)