diff --git a/Cargo.lock b/Cargo.lock index 39bdbf9..8049060 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -380,7 +380,7 @@ dependencies = [ [[package]] name = "framework_lib" -version = "0.6.4" +version = "0.6.5" dependencies = [ "built", "clap", @@ -416,7 +416,7 @@ dependencies = [ [[package]] name = "framework_tool" -version = "0.6.4" +version = "0.6.5" dependencies = [ "embed-resource", "framework_lib", @@ -427,7 +427,7 @@ dependencies = [ [[package]] name = "framework_uefi" -version = "0.6.4" +version = "0.6.5" dependencies = [ "framework_lib", "log", diff --git a/EXAMPLES.md b/EXAMPLES.md index 78ab79e..e921096 100644 --- a/EXAMPLES.md +++ b/EXAMPLES.md @@ -478,6 +478,9 @@ Board IDs ## Check temperatures and fan speed +Example on one system, note that different systems have different thermal +sensors and number of fans, so your output may look different: + ``` > sudo framework_tool --thermal F75303_Local: 43 C diff --git a/README.md b/README.md index 1dea455..202463f 100644 --- a/README.md +++ b/README.md @@ -79,7 +79,7 @@ To add it to your project add it to your `Cargo.toml`: ```toml [dependencies] -framework_lib = "0.6.4" +framework_lib = "0.6.5" ``` ## Features diff --git a/flake.nix b/flake.nix index 1836231..98aa00c 100644 --- a/flake.nix +++ b/flake.nix @@ -91,7 +91,7 @@ in rustPlatform.buildRustPackage { pname = "framework_tool"; - version = "0.6.4"; + version = "0.6.5"; src = buildSrc; @@ -144,7 +144,7 @@ in rustPlatformWindows.buildRustPackage { pname = "framework_tool"; - version = "0.6.4"; + version = "0.6.5"; src = buildSrc; @@ -194,7 +194,7 @@ in rustPlatform.buildRustPackage { pname = "framework_uefi"; - version = "0.6.4"; + version = "0.6.5"; src = buildSrc; diff --git a/framework_lib/Cargo.toml b/framework_lib/Cargo.toml index 9a6a63c..925de6d 100644 --- a/framework_lib/Cargo.toml +++ b/framework_lib/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "framework_lib" -version = "0.6.4" +version = "0.6.5" description = "Library to control Framework Computer systems" homepage = "https://github.com/FrameworkComputer/framework-system" repository = "https://github.com/FrameworkComputer/framework-system" diff --git a/framework_tool/Cargo.toml b/framework_tool/Cargo.toml index fe7d725..a7f4f91 100644 --- a/framework_tool/Cargo.toml +++ b/framework_tool/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "framework_tool" -version = "0.6.4" +version = "0.6.5" description = "Tool to control Framework Computer systems" homepage = "https://github.com/FrameworkComputer/framework-system" repository = "https://github.com/FrameworkComputer/framework-system" @@ -20,7 +20,7 @@ nvidia = [ "framework_lib/nvidia" ] [dependencies.framework_lib] path = "../framework_lib" -version = "0.6.4" +version = "0.6.5" [build-dependencies] static_vcruntime = "3.0" diff --git a/framework_uefi/Cargo.toml b/framework_uefi/Cargo.toml index 0cf6eba..d638c59 100644 --- a/framework_uefi/Cargo.toml +++ b/framework_uefi/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "framework_uefi" -version = "0.6.4" +version = "0.6.5" description = "UEFI Tool to control Framework Computer systems" homepage = "https://github.com/FrameworkComputer/framework-system" repository = "https://github.com/FrameworkComputer/framework-system" @@ -24,6 +24,6 @@ log = { version = "0.4", default-features = true } [dependencies.framework_lib] path = "../framework_lib" -version = "0.6.4" +version = "0.6.5" features = ["uefi"] default-features = false