Skip to content

Commit f7d7553

Browse files
committed
Release rayon 1.3.0 / rayon-core 1.7.0
1 parent b98bb23 commit f7d7553

File tree

6 files changed

+46
-9
lines changed

6 files changed

+46
-9
lines changed

Cargo.toml

+2-2
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.2.1"
4+
version = "1.3.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.6.1", path = "rayon-core" }
22+
rayon-core = { version = "1.7.0", path = "rayon-core" }
2323
crossbeam-deque = "0.7.2"
2424

2525
# This is a public dependency!

RELEASES.md

+37
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,40 @@
1+
# Release rayon 1.3.0 / rayon-core 1.7.0 (2019-12-20)
2+
3+
- Tuples up to length 12 now implement `IntoParallelIterator`, creating a
4+
`MultiZip` iterator that produces items as similarly-shaped tuples.
5+
- The `--cfg=rayon_unstable` supporting code for `rayon-futures` is removed.
6+
- The minimum supported `rustc` is now 1.31.
7+
8+
## Contributors
9+
10+
Thanks to all of the contributors for this release!
11+
12+
- @cuviper
13+
- @c410-f3r
14+
- @silwol
15+
16+
17+
# Release rayon-futures 0.1.1 (2019-12-20)
18+
19+
- `Send` bounds have been added for the `Item` and `Error` associated types on
20+
all generic `F: Future` interfaces. While technically a breaking change, this
21+
is a soundness fix, so we are not increasing the semantic version for this.
22+
- This crate is now deprecated, and the `--cfg=rayon_unstable` supporting code
23+
will be removed in `rayon-core 1.7.0`. This only supported the now-obsolete
24+
`Future` from `futures 0.1`, while support for `std::future::Future` is
25+
expected to come directly in `rayon-core` -- although that is not ready yet.
26+
27+
## Contributors
28+
29+
Thanks to all of the contributors for this release!
30+
31+
- @cuviper
32+
- @kornelski
33+
- @jClaireCodesStuff
34+
- @jwass
35+
- @seanchen1991
36+
37+
138
# Release rayon 1.2.1 / rayon-core 1.6.1 (2019-11-20)
239

340
- Update crossbeam dependencies.

ci/compat-Cargo.lock

+4-4
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

rayon-core/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "rayon-core"
3-
version = "1.6.1" # reminder to update html_root_url attribute
3+
version = "1.7.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/src/lib.rs

+1-1
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.6")]
22+
#![doc(html_root_url = "https://docs.rs/rayon-core/1.7")]
2323
#![deny(missing_debug_implementations)]
2424
#![deny(missing_docs)]
2525
#![deny(unreachable_pub)]

src/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#![doc(html_root_url = "https://docs.rs/rayon/1.2")]
1+
#![doc(html_root_url = "https://docs.rs/rayon/1.3")]
22
#![deny(missing_debug_implementations)]
33
#![deny(missing_docs)]
44
#![deny(unreachable_pub)]

0 commit comments

Comments
 (0)