Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
11 changes: 10 additions & 1 deletion RELEASES.md
Original file line number Diff line number Diff line change
@@ -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<str>` via `String`.

# Release rayon 1.10.0 (2024-03-23)

Expand Down