From 4cdef5c4a67a58af3993b55338f98216e3d8320a Mon Sep 17 00:00:00 2001 From: narugit Date: Sun, 18 Aug 2024 10:07:36 +0900 Subject: [PATCH] feat: update to 0.4.0 --- README.md | 2 +- smctemp.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index fbcfd87..f9e6b43 100644 --- a/README.md +++ b/README.md @@ -22,7 +22,7 @@ $ smctemp -c ## Usage ```console $ smctemp -h -Check Temperature by using Apple System Management Control (Smc) tool 0.3.2 +Check Temperature by using Apple System Management Control (Smc) tool 0.4.0 Usage: ./smctemp [options] -c : list CPU temperatures (Celsius) diff --git a/smctemp.h b/smctemp.h index cd223ec..d7002cd 100644 --- a/smctemp.h +++ b/smctemp.h @@ -33,7 +33,7 @@ #define COUNT_OF(x) ((sizeof(x)/sizeof(0[x])) / ((size_t)(!(sizeof(x) % sizeof(0[x]))))) namespace smctemp { -const std::string kVersion = "0.3.2"; +const std::string kVersion = "0.4.0"; constexpr char kIOAppleSmcHiddenClassName[] = "AppleSMC"; constexpr char kSmcCmdReadBytes = 5; constexpr char kSmcCmdReadIndex = 8;