diff --git a/CHANGELOG.md b/CHANGELOG.md index b6f06e4..8255e12 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## v1.0.29 + +* Fixed: Battery percent converted to integer and battery time hidden at 100% level + ## v1.0.28 * Fixed: Battery meter causing crash when connecting/disconnecting battery diff --git a/bpytop.py b/bpytop.py index e63ba20..9eeae12 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.28" +VERSION: str = "1.0.29" #? Argument parser -------------------------------------------------------------------------------> if len(sys.argv) > 1: diff --git a/pyproject.toml b/pyproject.toml index 7e838d7..d144c7f 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "bpytop" -version = "1.0.28" +version = "1.0.29" description = "Resource monitor that shows usage and stats for processor, memory, disks, network and processes." readme = "README.md" authors = ["Aristocratos "]