version 5.4.3

This commit is contained in:
2026-08-17 13:54:02 -04:00
parent 45d11a66b5
commit fb8584d03e
5 changed files with 11 additions and 4 deletions
+7
View File
@@ -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
+1 -1
View File
@@ -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
+1 -1
View File
@@ -14,4 +14,4 @@ Install options:
"""
__all__ = ["__version__"]
__version__ = "5.4.2"
__version__ = "5.4.3"
+1 -1
View File
@@ -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"
+1 -1
View File
@@ -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)