From 8708466bedd9acb84cc46c7e7890285a9d0b1356 Mon Sep 17 00:00:00 2001 From: Sean McArthur Date: Thu, 28 Dec 2017 17:04:18 -0800 Subject: [PATCH] v1.8.0 --- CHANGELOG.md | 6 ++++++ Cargo.toml | 2 +- src/lib.rs | 2 +- 3 files changed, 8 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 71ecf32..5b76eb8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,9 @@ +## v1.8.0 + +#### Features + +- add `wasm-unknown-unknown` target support + ## v1.7.0 #### Features diff --git a/Cargo.toml b/Cargo.toml index c23907c..5d36981 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "num_cpus" -version = "1.7.0" # don't forget to update html_root_url +version = "1.8.0" # don't forget to update html_root_url description = "Get the number of CPUs on a machine." authors = ["Sean McArthur "] license = "MIT/Apache-2.0" diff --git a/src/lib.rs b/src/lib.rs index ac58f08..830e3b5 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -28,7 +28,7 @@ //! [`rayon::ThreadPool`]: https://docs.rs/rayon/0.8.2/rayon/struct.ThreadPool.html #![cfg_attr(test, deny(warnings))] #![deny(missing_docs)] -#![doc(html_root_url = "https://docs.rs/num_cpus/1.7.0")] +#![doc(html_root_url = "https://docs.rs/num_cpus/1.8.0")] #![allow(non_snake_case)] #[cfg(not(windows))]