From efeeace277a08b1cc5c2cf076ff2e7e948030e6f Mon Sep 17 00:00:00 2001 From: Josh Stone Date: Thu, 29 Aug 2019 10:34:08 -0700 Subject: [PATCH] Release rayon 1.2.0 / rayon-core 1.6.0 --- RELEASES.md | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/RELEASES.md b/RELEASES.md index 20da192ad..8e97d498f 100644 --- a/RELEASES.md +++ b/RELEASES.md @@ -1,3 +1,21 @@ +# Release rayon 1.2.0 / rayon-core 1.6.0 (2019-08-30) + +- The new `ParallelIterator::copied()` converts an iterator of references into + copied values, like `Iterator::copied()`. +- `ParallelExtend` is now implemented for the unit `()`. +- Internal updates were made to improve test determinism, reduce closure type + sizes, reduce task allocations, and update dependencies. +- The minimum supported `rustc` is now 1.28. + +## Contributors + +Thanks to all of the contributors for this release! + +- @Aaron1011 +- @cuviper +- @ralfbiedert + + # Release rayon 1.1.0 / rayon-core 1.5.0 (2019-06-12) - FIFO spawns are now supported using the new `spawn_fifo()` and `scope_fifo()`