Skip to content

Commit 386b2f6

Browse files
committed
556: Release rayon 1.0.1 r=cuviper a=cuviper We've made a few improvements to documentation, but these need to be published to reach docs.rs. Fixes rayon-rs#555.
2 parents dcf720b + c8d20e4 commit 386b2f6

File tree

3 files changed

+17
-2
lines changed

3 files changed

+17
-2
lines changed

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "rayon"
33
# Reminder to update html_rool_url in lib.rs when updating version
4-
version = "1.0.0"
4+
version = "1.0.1"
55
authors = ["Niko Matsakis <[email protected]>",
66
"Josh Stone <[email protected]>"]
77
description = "Simple work-stealing parallelism for Rust"

RELEASES.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,18 @@
1+
# Release rayon 1.0.1
2+
3+
- Added more documentation for `rayon::iter::split()`.
4+
- Corrected links and typos in documentation.
5+
6+
## Contributors
7+
8+
Thanks to all of the contributors for this release!
9+
10+
- @cuviper
11+
- @HadrienG2
12+
- @matthiasbeyer
13+
- @nikomatsakis
14+
15+
116
# Release rayon 1.0.0 / rayon-core 1.4.0
217

318
- `ParallelIterator` added the `update` method which applies a function to

tests/compile-fail/cell_par_iter.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,6 @@ use std::cell::Cell;
88
fn main() {
99
let c = Cell::new(42_i32);
1010
(0_i32..1024).into_par_iter()
11-
.map(|_| c.get()) //~ ERROR Sync` is not satisfied
11+
.map(|_| c.get()) //~ ERROR E0277
1212
.min();
1313
}

0 commit comments

Comments
 (0)