Skip to content

Commit 7df6d5b

Browse files
authored
Merge pull request #1113 from cuviper/release-1.8.1
Release rayon 1.8.1 and rayon-core 1.12.1
2 parents b03b68c + 2ee6399 commit 7df6d5b

File tree

4 files changed

+11
-5
lines changed

4 files changed

+11
-5
lines changed

Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "rayon"
3-
version = "1.8.0"
3+
version = "1.8.1"
44
authors = ["Niko Matsakis <[email protected]>",
55
"Josh Stone <[email protected]>"]
66
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.12.0", path = "rayon-core" }
22+
rayon-core = { version = "1.12.1", path = "rayon-core" }
2323
wasm_sync = { version = "0.1.0", optional = true }
2424

2525
# This is a public dependency!

RELEASES.md

+6
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
# Release rayon 1.8.1 / rayon-core 1.12.1 (2024-01-17)
2+
3+
- The new `"web_spin_lock"` crate feature makes mutexes spin on the main
4+
browser thread in WebAssembly, rather than suffer an error about forbidden
5+
`atomics.wait` if they were to block in that context. Thanks @RReverser!
6+
17
# Release rayon 1.8.0 / rayon-core 1.12.0 (2023-09-20)
28

39
- The minimum supported `rustc` is now 1.63.

ci/compat-Cargo.lock

+2-2
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.12.0"
3+
version = "1.12.1"
44
authors = ["Niko Matsakis <[email protected]>",
55
"Josh Stone <[email protected]>"]
66
description = "Core APIs for Rayon"

0 commit comments

Comments
 (0)