diff --git a/CHANGELOG.md b/CHANGELOG.md index ef7f701..5086911 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog +## v1.0.38 + +* Fixed: Cpu sensor check when changing from manual sensor to Auto +* Fixed: Menu collection timeout and menu background update stall +* Added: Custom options for clock formatting: hostname and username + ## v1.0.37 * Fixed: Swap toggle rare crash diff --git a/bpytop.py b/bpytop.py index 589e9bc..bef7b04 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.37" +VERSION: str = "1.0.38" #? Argument parser -------------------------------------------------------------------------------> args = argparse.ArgumentParser() diff --git a/pyproject.toml b/pyproject.toml index dd837e0..f47b793 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "bpytop" -version = "1.0.37" +version = "1.0.38" description = "Resource monitor that shows usage and stats for processor, memory, disks, network and processes." readme = "README.md" authors = ["Aristocratos "]