From f838920f7caf70a447b688f816ee172aad2d5d31 Mon Sep 17 00:00:00 2001 From: Andreas Wrede Date: Mon, 17 Aug 2026 13:54:02 -0400 Subject: [PATCH] version 5.4.3 --- CHANGELOG.md | 7 +++++++ README.md | 2 +- hbd/__init__.py | 2 +- pyproject.toml | 2 +- scripts/hbc_mini.py | 2 +- 5 files changed, 11 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9eea8bb..f9d5c46 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,13 @@ All notable changes to this project are documented here, organized by release. +## [5.4.3] + +### Fixed +- fix RTT y-axis label clipping, add x-axis tickmarks, enlarge charts + +--- + ## [5.4.2] ### Fixed diff --git a/README.md b/README.md index 8c65d64..21b03b5 100644 --- a/README.md +++ b/README.md @@ -20,7 +20,7 @@ A lightweight UDP-based host monitoring system. Monitored hosts run a client (`h └────────────────────┘ └────────────────────────────┘ ``` -**Package:** `hbd` v5.4.2 +**Package:** `hbd` v5.4.3 **Python:** 3.11+ ### Subpackages diff --git a/hbd/__init__.py b/hbd/__init__.py index 65db0b3..22481b4 100644 --- a/hbd/__init__.py +++ b/hbd/__init__.py @@ -14,4 +14,4 @@ Install options: """ __all__ = ["__version__"] -__version__ = "5.4.2" +__version__ = "5.4.3" diff --git a/pyproject.toml b/pyproject.toml index aea79f0..a141b1a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "hbd" -version = "5.4.2" +version = "5.4.3" description = "Heartbeat monitoring system — client (hbc) and server (hbd)" readme = "README.md" requires-python = ">=3.11" diff --git a/scripts/hbc_mini.py b/scripts/hbc_mini.py index 0bc9bf4..f31f1c9 100755 --- a/scripts/hbc_mini.py +++ b/scripts/hbc_mini.py @@ -41,7 +41,7 @@ from pathlib import Path from typing import Any, Dict, List, Optional, Tuple # updated by scripts/bumpminor.sh -__version__ = "5.4.2" +__version__ = "5.4.3" # --------------------------------------------------------------------------- # Protocol (mirrors hbd/common/proto.py)