v1.0.35 Bug fix

pull/135/head v1.0.35
aristocratos 2020-09-20 19:20:16 +02:00
parent fbfd7c3721
commit aebc82eb35
3 changed files with 6 additions and 2 deletions

View File

@ -1,5 +1,9 @@
# Changelog # Changelog
## v1.0.35
* Fixed: Decimal placement in floating_humanizer() function
## v1.0.34 ## v1.0.34
* Changed: Improvement on cpu name detection * Changed: Improvement on cpu name detection

View File

@ -56,7 +56,7 @@ if errors:
print("\nInstall required modules!\n") print("\nInstall required modules!\n")
raise SystemExit(1) raise SystemExit(1)
VERSION: str = "1.0.34" VERSION: str = "1.0.35"
#? Argument parser -------------------------------------------------------------------------------> #? Argument parser ------------------------------------------------------------------------------->
args = argparse.ArgumentParser() args = argparse.ArgumentParser()

View File

@ -1,6 +1,6 @@
[tool.poetry] [tool.poetry]
name = "bpytop" 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." description = "Resource monitor that shows usage and stats for processor, memory, disks, network and processes."
readme = "README.md" readme = "README.md"
authors = ["Aristocratos <jakob@qvantnet.com>"] authors = ["Aristocratos <jakob@qvantnet.com>"]