summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authoraristocratos <gnmjpl@gmail.com>2021-02-14 11:26:20 +0100
committeraristocratos <gnmjpl@gmail.com>2021-02-14 11:26:20 +0100
commit57778eee034f41b97af09148271db7ebbb77d6d3 (patch)
treef9540a1990cd8cbf527b3262160ebc9d4bdb189b
parenta1316d4d33ae204dd4238ca06a663e4295943a06 (diff)
v1.0.62 Bug fixes and new theme Adaptav1.0.62
-rw-r--r--CHANGELOG.md6
-rwxr-xr-xbpytop.py2
-rw-r--r--pyproject.toml2
3 files changed, 8 insertions, 2 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 2c201f4..9f4ab9d 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,5 +1,11 @@
# Changelog
+## v1.0.62
+
+* Fixed: Support cpus with non-sequential core ids, patch by @ErwinJunge
+* Added: New theme Adapta, by @olokelo
+* Changed: Net graphs will now round up any value above 0 to register on graph
+
## v1.0.61
* Added: Vim keys (h, j, k, l) for browsing and moved help to shift+h
diff --git a/bpytop.py b/bpytop.py
index ba38fe0..d935601 100755
--- a/bpytop.py
+++ b/bpytop.py
@@ -55,7 +55,7 @@ if errors:
print("\nInstall required modules!\n")
raise SystemExit(1)
-VERSION: str = "1.0.61"
+VERSION: str = "1.0.62"
#? Argument parser ------------------------------------------------------------------------------->
args = argparse.ArgumentParser()
diff --git a/pyproject.toml b/pyproject.toml
index 7b45f19..cd3bef1 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -1,6 +1,6 @@
[tool.poetry]
name = "bpytop"
-version = "1.0.61"
+version = "1.0.62"
description = "Resource monitor that shows usage and stats for processor, memory, disks, network and processes."
readme = "README.md"
authors = ["Aristocratos <jakob@qvantnet.com>"]