From 5f1b03332000b4c4274b5bd35fac516049ff1c6b Mon Sep 17 00:00:00 2001 From: Sean McArthur Date: Mon, 20 Dec 2021 11:36:47 -0800 Subject: [PATCH] v1.13.1 --- CHANGELOG.md | 6 ++++++ Cargo.toml | 2 +- src/lib.rs | 1 - 3 files changed, 7 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0caafb2..5496ace 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,9 @@ +## v1.13.1 + +### Fixes + +- fix parsing zero or multiple optional fields in cgroup mountinfo. + ## v1.13.0 ### Features diff --git a/Cargo.toml b/Cargo.toml index f3778b9..a6cbbd2 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "num_cpus" -version = "1.13.0" # don't forget to update html_root_url +version = "1.13.1" description = "Get the number of CPUs on a machine." authors = ["Sean McArthur "] license = "MIT OR Apache-2.0" diff --git a/src/lib.rs b/src/lib.rs index 940fb3f..20474af 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -28,7 +28,6 @@ //! [`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.13.0")] #![allow(non_snake_case)] #[cfg(not(windows))]