diff --git a/CHANGELOG.md b/CHANGELOG.md index 5086911..2e4d0f7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog +## v1.0.39 + +* Fixed: Manual sensor selection screen refresh +* Fixed: Rare swap toggle crash +* Fixed: Clock and battery placement and sizing + ## v1.0.38 * Fixed: Cpu sensor check when changing from manual sensor to Auto diff --git a/bpytop.py b/bpytop.py index ed48b02..be6e723 100755 --- a/bpytop.py +++ b/bpytop.py @@ -56,7 +56,7 @@ print("\nInstall required modules!\n") raise SystemExit(1) -VERSION: str = "1.0.38" +VERSION: str = "1.0.39" #? Argument parser -------------------------------------------------------------------------------> args = argparse.ArgumentParser() diff --git a/pyproject.toml b/pyproject.toml index f47b793..8556bfa 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "bpytop" -version = "1.0.38" +version = "1.0.39" description = "Resource monitor that shows usage and stats for processor, memory, disks, network and processes." readme = "README.md" authors = ["Aristocratos "]