Skip to content

Commit 0b73db2

Browse files
committed
Bump MSRV to 1.63
1 parent e39b730 commit 0b73db2

File tree

8 files changed

+14
-14
lines changed

8 files changed

+14
-14
lines changed

.github/workflows/ci.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,11 @@ on:
88
jobs:
99

1010
check:
11-
name: Check (1.59.0)
11+
name: Check (1.63.0)
1212
runs-on: ubuntu-latest
1313
steps:
1414
- uses: actions/checkout@v3
15-
- uses: dtolnay/rust-toolchain@1.59.0
15+
- uses: dtolnay/rust-toolchain@1.63.0
1616
- run: cp ci/compat-Cargo.lock ./Cargo.lock
1717
- run: cargo check --verbose --locked
1818

.github/workflows/pr.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,11 @@ env:
88
jobs:
99

1010
check:
11-
name: Check (1.59.0)
11+
name: Check (1.63.0)
1212
runs-on: ubuntu-latest
1313
steps:
1414
- uses: actions/checkout@v3
15-
- uses: dtolnay/rust-toolchain@1.59.0
15+
- uses: dtolnay/rust-toolchain@1.63.0
1616
- run: cp ci/compat-Cargo.lock ./Cargo.lock
1717
- run: cargo check --verbose --locked
1818

Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
[package]
22
name = "rayon"
3-
version = "1.7.0"
3+
version = "1.8.0"
44
authors = ["Niko Matsakis <[email protected]>",
55
"Josh Stone <[email protected]>"]
66
description = "Simple work-stealing parallelism for Rust"
7-
rust-version = "1.59"
7+
rust-version = "1.63"
88
edition = "2021"
99
license = "MIT OR Apache-2.0"
1010
repository = "https://github.com/rayon-rs/rayon"
@@ -19,7 +19,7 @@ members = ["rayon-demo", "rayon-core"]
1919
exclude = ["ci"]
2020

2121
[dependencies]
22-
rayon-core = { version = "1.11.0", path = "rayon-core" }
22+
rayon-core = { version = "1.12.0", path = "rayon-core" }
2323

2424
# This is a public dependency!
2525
[dependencies.either]

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
[![Rayon crate](https://img.shields.io/crates/v/rayon.svg)](https://crates.io/crates/rayon)
44
[![Rayon documentation](https://docs.rs/rayon/badge.svg)](https://docs.rs/rayon)
5-
![minimum rustc 1.59](https://img.shields.io/badge/rustc-1.59+-red.svg)
5+
![minimum rustc 1.63](https://img.shields.io/badge/rustc-1.63+-red.svg)
66
[![build status](https://github.com/rayon-rs/rayon/workflows/master/badge.svg)](https://github.com/rayon-rs/rayon/actions)
77
[![Join the chat at https://gitter.im/rayon-rs/Lobby](https://badges.gitter.im/rayon-rs/Lobby.svg)](https://gitter.im/rayon-rs/Lobby?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
88

@@ -84,7 +84,7 @@ just add:
8484
use rayon::prelude::*;
8585
```
8686

87-
Rayon currently requires `rustc 1.59.0` or greater.
87+
Rayon currently requires `rustc 1.63.0` or greater.
8888

8989
### Usage with WebAssembly
9090

bors.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
status = [
2-
"Check (1.59.0)",
2+
"Check (1.63.0)",
33
"Test (ubuntu-latest, stable)",
44
"Test (ubuntu-latest, stable-i686)",
55
"Test (ubuntu-latest, beta)",

rayon-core/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
[package]
22
name = "rayon-core"
3-
version = "1.11.0"
3+
version = "1.12.0"
44
authors = ["Niko Matsakis <[email protected]>",
55
"Josh Stone <[email protected]>"]
66
description = "Core APIs for Rayon"
77
license = "MIT OR Apache-2.0"
88
repository = "https://github.com/rayon-rs/rayon"
99
documentation = "https://docs.rs/rayon/"
10-
rust-version = "1.59"
10+
rust-version = "1.63"
1111
edition = "2021"
1212
links = "rayon-core"
1313
build = "build.rs"

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.59.0` or greater.
11+
Rayon-core currently requires `rustc 1.63.0` or greater.

rayon-demo/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[package]
2-
rust-version = "1.59"
2+
rust-version = "1.63"
33
edition = "2021"
44
name = "rayon-demo"
55
version = "0.0.0"

0 commit comments

Comments
 (0)