diff --git a/CHANGELOG.md b/CHANGELOG.md index 353c6d0..45b1fcd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## v1.0.33 + +* Changed: Improvement on osx cpu temperature collection with coretemp +* Fixed: Battery stats crash and better battery status detection +* README: coretemp install instructions by @hacker1024 +* README: Added notice about font problems and possible solutions + ## v1.0.32 * Added: Symbol for battery inactive diff --git a/bpytop.py b/bpytop.py index 1c272ca..66c11ae 100755 --- a/bpytop.py +++ b/bpytop.py @@ -56,7 +56,7 @@ if errors: print("\nInstall required modules!\n") raise SystemExit(1) -VERSION: str = "1.0.32" +VERSION: str = "1.0.33" #? Argument parser -------------------------------------------------------------------------------> args = argparse.ArgumentParser() diff --git a/pyproject.toml b/pyproject.toml index fb7f4fc..ecb9b8d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "bpytop" -version = "1.0.32" +version = "1.0.33" description = "Resource monitor that shows usage and stats for processor, memory, disks, network and processes." readme = "README.md" authors = ["Aristocratos "]