diff --git a/CHANGELOG.md b/CHANGELOG.md index 5531fed..6a4672f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog +## v1.0.31 + +* Fixed: Battery meter redraw after terminal resize +* Fixed: Battery meter additional fixes +* Fixed: Cpu temp color wrong on small sizes + ## v1.0.30 * Changed: Argument parsing using argparse diff --git a/bpytop.py b/bpytop.py index 6040a7e..8c6d1e4 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.30" +VERSION: str = "1.0.31" #? Argument parser -------------------------------------------------------------------------------> args = argparse.ArgumentParser() diff --git a/pyproject.toml b/pyproject.toml index 80e53bc..586bb56 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "bpytop" -version = "1.0.30" +version = "1.0.31" description = "Resource monitor that shows usage and stats for processor, memory, disks, network and processes." readme = "README.md" authors = ["Aristocratos "]