diff --git a/CHANGELOG.md b/CHANGELOG.md index bbe447b..69883af 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog +## v1.0.27 + +* Added: kyli0x theme by @kyli0x +* Added: Battery meter and stats +* Added: Option to change the tree view auto collapse depth + ## v1.0.26 * Fixed: Cpu temp color index crash diff --git a/bpytop.py b/bpytop.py index 379cb8e..118a07a 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.26" +VERSION: str = "1.0.27" #? Argument parser -------------------------------------------------------------------------------> if len(sys.argv) > 1: diff --git a/pyproject.toml b/pyproject.toml index 4ef97c0..3a2c7a0 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "bpytop" -version = "1.0.26" +version = "1.0.27" description = "Resource monitor that shows usage and stats for processor, memory, disks, network and processes." readme = "README.md" authors = ["Aristocratos "]