From 332e8458ce556340d4c45771424ff2f480ab307d Mon Sep 17 00:00:00 2001 From: aristocratos Date: Sun, 23 Aug 2020 15:00:49 +0200 Subject: [PATCH] v1.0.18 Bug fixes --- CHANGELOG.md | 4 ++++ bpytop.py | 2 +- pyproject.toml | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index aa16e9a..d91cdb2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## v1.0.18 + +* Fixed: Init screen and error log level when starting from pip installation + ## v1.0.17 * Added: Option to toggle theme background color diff --git a/bpytop.py b/bpytop.py index 29c9b17..fe39e4f 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.17" +VERSION: str = "1.0.18" #? Argument parser -------------------------------------------------------------------------------> if len(sys.argv) > 1: diff --git a/pyproject.toml b/pyproject.toml index f7b0f22..7d36e98 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "bpytop" -version = "1.0.17" +version = "1.0.18" description = "Resource monitor that shows usage and stats for processor, memory, disks, network and processes." authors = ["Aristocratos "] license = "Apache-2.0"