summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--CHANGELOG.md5
-rwxr-xr-xbpytop.py2
-rw-r--r--pyproject.toml2
3 files changed, 7 insertions, 2 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index e60a8a0..ef7f701 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,5 +1,10 @@
# Changelog
+## v1.0.37
+
+* Fixed: Swap toggle rare crash
+* Fixed: Cpu sensor option to trigger temp toggle if check temp is true
+
## v1.0.36
* Added: Rounding for floating_humanizer() short option
diff --git a/bpytop.py b/bpytop.py
index cf39977..fec86f6 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.36"
+VERSION: str = "1.0.37"
#? Argument parser ------------------------------------------------------------------------------->
args = argparse.ArgumentParser()
diff --git a/pyproject.toml b/pyproject.toml
index 8573fea..dd837e0 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -1,6 +1,6 @@
[tool.poetry]
name = "bpytop"
-version = "1.0.36"
+version = "1.0.37"
description = "Resource monitor that shows usage and stats for processor, memory, disks, network and processes."
readme = "README.md"
authors = ["Aristocratos <jakob@qvantnet.com>"]