From 673217560486593d7c7ff708c65e59db6b9375d4 Mon Sep 17 00:00:00 2001 From: Guillaume Gomez Date: Fri, 5 May 2023 22:05:29 +0200 Subject: [PATCH 1/2] Update CHANGELOG for 0.29.0 --- CHANGELOG.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 22246ba97..2c66456c4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,11 @@ +# 0.29.0 + + * Add `ProcessExt::effective_user_id` and `ProcessExt::effective_group_id`. + * Rename `DiskType` into `DiskKind`. + * Rename `DiskExt::type_` into `DiskExt::kind`. + * macOS: Correctly handle `ProcessStatus` and remove public `ThreadStatus` field. + * Windows 11: Fix CPU core usage. + # 0.28.4 * macOS: Improve CPU computation. From 14f9f45858daadf15286bbf5d250c1f390371e70 Mon Sep 17 00:00:00 2001 From: Guillaume Gomez Date: Fri, 5 May 2023 22:05:45 +0200 Subject: [PATCH 2/2] Update crate version to 0.29.0 --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 5db399717..1ac8d6baa 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "sysinfo" -version = "0.28.4" +version = "0.29.0" authors = ["Guillaume Gomez "] description = "Library to get system information such as processes, CPUs, disks, components and networks" repository = "https://github.com/GuillaumeGomez/sysinfo"