diff options
Diffstat (limited to 'vendor/rayon/RELEASES.md')
-rw-r--r-- | vendor/rayon/RELEASES.md | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/vendor/rayon/RELEASES.md b/vendor/rayon/RELEASES.md index eed3445ee..f6757614c 100644 --- a/vendor/rayon/RELEASES.md +++ b/vendor/rayon/RELEASES.md @@ -1,3 +1,15 @@ +# Release rayon 1.6.1 (2022-12-09) + +- Simplified `par_bridge` to only pull one item at a time from the iterator, + without batching. Threads that are waiting for iterator items will now block + appropriately rather than spinning CPU. (Thanks @njaard!) +- Added protection against recursion in `par_bridge`, so iterators that also + invoke rayon will not cause mutex recursion deadlocks. + +# Release rayon-core 1.10.1 (2022-11-18) + +- Fixed a race condition with threads going to sleep while a broadcast starts. + # Release rayon 1.6.0 / rayon-core 1.10.0 (2022-11-18) - The minimum supported `rustc` is now 1.56. |