diff --git a/CHANGELOG.md b/CHANGELOG.md index 4000f40..4929f87 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,11 +1,15 @@ # Changelog -## v1.0.41 +## v1.0.42 * Fixed: Battery status not using same sensors as psutil * Added: Stripping of .local from /host clock format * Fixed: Battery clear if removed +## v1.0.41 + +* Skipped due to pypi - github versioning error + ## v1.0.40 * Fixed: Title leading whitespace diff --git a/bpytop.py b/bpytop.py index a79b1be..7e79fca 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.41" +VERSION: str = "1.0.42" #? Argument parser -------------------------------------------------------------------------------> args = argparse.ArgumentParser() diff --git a/pyproject.toml b/pyproject.toml index 8bc3798..f9a7daa 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "bpytop" -version = "1.0.41" +version = "1.0.42" description = "Resource monitor that shows usage and stats for processor, memory, disks, network and processes." readme = "README.md" authors = ["Aristocratos "]