From 59916c9a85f416d1927d2c6b3e3abdee0708a5fe Mon Sep 17 00:00:00 2001 From: aristocratos Date: Mon, 24 Aug 2020 17:18:01 +0200 Subject: [PATCH] v1.0.21 Bug fixes --- CHANGELOG.md | 5 +++++ bpytop.py | 2 +- pyproject.toml | 2 +- 3 files changed, 7 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b1be411..1ccb8f7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,10 @@ # Changelog +## v1.0.21 + +* Fixed: Clean excess whitespace from CPU model name, by @RedBearAK +* Changed: README.md absolute paths to work on PyPi + ## v1.0.20 * Release bump to fix pypi and source version missmatch diff --git a/bpytop.py b/bpytop.py index 8aaeec2..b101ca6 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.20" +VERSION: str = "1.0.21" #? Argument parser -------------------------------------------------------------------------------> if len(sys.argv) > 1: diff --git a/pyproject.toml b/pyproject.toml index df5ce1e..a669dfa 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "bpytop" -version = "1.0.20" +version = "1.0.21" description = "Resource monitor that shows usage and stats for processor, memory, disks, network and processes." readme = "README.md" authors = ["Aristocratos "]