Skip to content

Commit 8708466

Browse files
committed
v1.8.0
1 parent b2be87c commit 8708466

File tree

3 files changed

+8
-2
lines changed

3 files changed

+8
-2
lines changed

CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
## v1.8.0
2+
3+
#### Features
4+
5+
- add `wasm-unknown-unknown` target support
6+
17
## v1.7.0
28

39
#### Features

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22

33
name = "num_cpus"
4-
version = "1.7.0" # don't forget to update html_root_url
4+
version = "1.8.0" # don't forget to update html_root_url
55
description = "Get the number of CPUs on a machine."
66
authors = ["Sean McArthur <sean@seanmonstar.com>"]
77
license = "MIT/Apache-2.0"

src/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
//! [`rayon::ThreadPool`]: https://docs.rs/rayon/0.8.2/rayon/struct.ThreadPool.html
2929
#![cfg_attr(test, deny(warnings))]
3030
#![deny(missing_docs)]
31-
#![doc(html_root_url = "https://docs.rs/num_cpus/1.7.0")]
31+
#![doc(html_root_url = "https://docs.rs/num_cpus/1.8.0")]
3232
#![allow(non_snake_case)]
3333

3434
#[cfg(not(windows))]

0 commit comments

Comments
 (0)