From b347731fc0c008dbb88b406c595b1e644458fffe Mon Sep 17 00:00:00 2001 From: Sean McArthur Date: Wed, 15 Apr 2020 09:15:12 -0700 Subject: [PATCH] v1.13.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 5c433df..0caafb2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,9 @@ +## v1.13.0 + +### Features + +- add Linux cgroups support when calling `get()`. + ## v1.12.0 #### Fixes diff --git a/Cargo.toml b/Cargo.toml index e37b9db..a6e9434 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "num_cpus" -version = "1.12.0" # don't forget to update html_root_url +version = "1.13.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 959fe79..6c8280f 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -28,7 +28,7 @@ //! [`rayon::ThreadPool`]: https://docs.rs/rayon/1.*/rayon/struct.ThreadPool.html #![cfg_attr(test, deny(warnings))] #![deny(missing_docs)] -#![doc(html_root_url = "https://docs.rs/num_cpus/1.12.0")] +#![doc(html_root_url = "https://docs.rs/num_cpus/1.13.0")] #![allow(non_snake_case)] #[cfg(not(windows))]