Skip to content

Commit 99706a4

Browse files
committed
Bump minor versions for the increase to Rust 1.28
1 parent 022006d commit 99706a4

File tree

7 files changed

+9
-9
lines changed

7 files changed

+9
-9
lines changed

.travis.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,10 @@ matrix:
99
fast_finish: true
1010
include:
1111
# NB: To help with CI delays, each `pull_request` is only tested on Linux,
12-
# with 1.26 for compatibility and stable+rayon_unstable for broad test
12+
# with 1.28 for compatibility and stable+rayon_unstable for broad test
1313
# coverage. The bors bot counts as a `push` type, which will run it all.
1414

15-
- rust: 1.26.0
15+
- rust: 1.28.0
1616
os: linux
1717
#if: everything!
1818
script: cargo build

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.1.0"
4+
version = "1.2.0"
55
authors = ["Niko Matsakis <niko@alum.mit.edu>",
66
"Josh Stone <cuviper@gmail.com>"]
77
description = "Simple work-stealing parallelism for Rust"
@@ -18,7 +18,7 @@ members = ["rayon-demo", "rayon-core", "rayon-futures"]
1818
exclude = ["ci"]
1919

2020
[dependencies]
21-
rayon-core = { version = "1.5.0", path = "rayon-core" }
21+
rayon-core = { version = "1.6.0", path = "rayon-core" }
2222
crossbeam-deque = "0.7"
2323

2424
# This is a public dependency!

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ just add:
9090
use rayon::prelude::*;
9191
```
9292

93-
Rayon currently requires `rustc 1.26.0` or greater.
93+
Rayon currently requires `rustc 1.28.0` or greater.
9494

9595
## Contribution
9696

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.5.0" # reminder to update html_root_url attribute
3+
version = "1.6.0" # reminder to update html_root_url attribute
44
authors = ["Niko Matsakis <niko@alum.mit.edu>",
55
"Josh Stone <cuviper@gmail.com>"]
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.26.0` or greater.
11+
Rayon-core currently requires `rustc 1.28.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.5")]
22+
#![doc(html_root_url = "https://docs.rs/rayon-core/1.6")]
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.1")]
1+
#![doc(html_root_url = "https://docs.rs/rayon/1.2")]
22
#![deny(missing_debug_implementations)]
33
#![deny(missing_docs)]
44
#![deny(unreachable_pub)]

0 commit comments

Comments
 (0)