Skip to content

Commit dc13cb7

Browse files
bors[bot]cuviper
andauthored
Merge #810
810: Release rayon 1.5.0 / rayon-core 1.9.0 r=cuviper a=cuviper Co-authored-by: Josh Stone <[email protected]>
2 parents 4828f30 + 67eeea6 commit dc13cb7

File tree

8 files changed

+39
-26
lines changed

8 files changed

+39
-26
lines changed

Cargo.toml

Lines changed: 2 additions & 2 deletions
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.4.1"
4+
version = "1.5.0"
55
authors = ["Niko Matsakis <[email protected]>",
66
"Josh Stone <[email protected]>"]
77
description = "Simple work-stealing parallelism for Rust"
@@ -19,7 +19,7 @@ members = ["rayon-demo", "rayon-core"]
1919
exclude = ["ci"]
2020

2121
[dependencies]
22-
rayon-core = { version = "1.8.1", path = "rayon-core" }
22+
rayon-core = { version = "1.9.0", path = "rayon-core" }
2323
crossbeam-deque = "0.8.0"
2424

2525
# This is a public dependency!

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ as:
7171

7272
```toml
7373
[dependencies]
74-
rayon = "1.1"
74+
rayon = "1.5"
7575
```
7676

7777
To use the Parallel Iterator APIs, a number of traits have to be in

RELEASES.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,16 @@
1+
# Release rayon 1.5.0 / rayon-core 1.9.0 (2020-10-21)
2+
3+
- Update crossbeam dependencies.
4+
- The minimum supported `rustc` is now 1.36.
5+
6+
## Contributors
7+
8+
Thanks to all of the contributors for this release!
9+
10+
- @cuviper
11+
- @mbrubeck
12+
- @mrksu
13+
114
# Release rayon 1.4.1 (2020-09-29)
215

316
- The new `flat_map_iter` and `flatten_iter` methods can be used to flatten

ci/compat-Cargo.lock

Lines changed: 19 additions & 19 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

rayon-core/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "rayon-core"
3-
version = "1.8.1" # reminder to update html_root_url attribute
3+
version = "1.9.0" # reminder to update html_root_url attribute
44
authors = ["Niko Matsakis <[email protected]>",
55
"Josh Stone <[email protected]>"]
66
description = "Core APIs for Rayon"

rayon-core/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,4 @@ Please see [Rayon Docs] for details about using Rayon.
88

99
[Rayon Docs]: https://docs.rs/rayon/
1010

11-
Rayon-core currently requires `rustc 1.31.0` or greater.
11+
Rayon-core currently requires `rustc 1.36.0` or greater.

rayon-core/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
//! conflicting requirements will need to be resolved before the build will
2020
//! succeed.
2121
22-
#![doc(html_root_url = "https://docs.rs/rayon-core/1.8")]
22+
#![doc(html_root_url = "https://docs.rs/rayon-core/1.9")]
2323
#![deny(missing_debug_implementations)]
2424
#![deny(missing_docs)]
2525
#![deny(unreachable_pub)]

src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#![doc(html_root_url = "https://docs.rs/rayon/1.4")]
1+
#![doc(html_root_url = "https://docs.rs/rayon/1.5")]
22
#![deny(missing_debug_implementations)]
33
#![deny(missing_docs)]
44
#![deny(unreachable_pub)]

0 commit comments

Comments
 (0)