diff --git a/CHANGELOG.md b/CHANGELOG.md index 5178368..de8a7e8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## v1.0.35 + +* Fixed: Decimal placement in floating_humanizer() function + ## v1.0.34 * Changed: Improvement on cpu name detection diff --git a/bpytop.py b/bpytop.py index 2a50943..e802e05 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.34" +VERSION: str = "1.0.35" #? Argument parser -------------------------------------------------------------------------------> args = argparse.ArgumentParser() diff --git a/pyproject.toml b/pyproject.toml index 5b408eb..ab12db2 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "bpytop" -version = "1.0.34" +version = "1.0.35" description = "Resource monitor that shows usage and stats for processor, memory, disks, network and processes." readme = "README.md" authors = ["Aristocratos "]