diff --git a/.release-please-manifest.json b/.release-please-manifest.json index e60bf2a..033e2d4 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.2.9" + ".": "0.2.10" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 6a74b29..d7ad7a3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,19 @@ All notable changes to this project will be documented in this file. This changelog is automatically generated by [release-please](https://github.com/googleapis/release-please) based on [Conventional Commits](https://www.conventionalcommits.org/). +## [0.2.10](https://github.com/jorijn/meshcore-stats/compare/v0.2.9...v0.2.10) (2026-01-08) + + +### Documentation + +* add TZ timezone setting to example config ([45bdf5d](https://github.com/jorijn/meshcore-stats/commit/45bdf5d6d47aacb7ebaba8e420bc9f8d917d06a3)) + + +### Tests + +* add comprehensive pytest test suite with 95% coverage ([#29](https://github.com/jorijn/meshcore-stats/issues/29)) ([a9f6926](https://github.com/jorijn/meshcore-stats/commit/a9f69261049e45b36119fd502dd0d7fc2be2691c)) +* stabilize suite and broaden integration coverage ([#32](https://github.com/jorijn/meshcore-stats/issues/32)) ([ca13e31](https://github.com/jorijn/meshcore-stats/commit/ca13e31aae1bff561b278608c16df8e17424f9eb)) + ## [0.2.9](https://github.com/jorijn/meshcore-stats/compare/v0.2.8...v0.2.9) (2026-01-06) diff --git a/docker-compose.yml b/docker-compose.yml index 5b5a671..148f581 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -15,7 +15,7 @@ services: # MeshCore Stats - Data collection and rendering # ========================================================================== meshcore-stats: - image: ghcr.io/jorijn/meshcore-stats:0.2.9 # x-release-please-version + image: ghcr.io/jorijn/meshcore-stats:0.2.10 # x-release-please-version container_name: meshcore-stats restart: unless-stopped diff --git a/pyproject.toml b/pyproject.toml index 44f1a1d..c6097df 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "meshcore-stats" -version = "0.2.9" +version = "0.2.10" description = "MeshCore LoRa mesh network monitoring and statistics" readme = "README.md" requires-python = ">=3.11" diff --git a/src/meshmon/__init__.py b/src/meshmon/__init__.py index 1f1ff88..98f378c 100644 --- a/src/meshmon/__init__.py +++ b/src/meshmon/__init__.py @@ -1,3 +1,3 @@ """MeshCore network monitoring library.""" -__version__ = "0.2.9" # x-release-please-version +__version__ = "0.2.10" # x-release-please-version diff --git a/uv.lock b/uv.lock index 767522e..005d22d 100644 --- a/uv.lock +++ b/uv.lock @@ -1,5 +1,5 @@ version = 1 -revision = 2 +revision = 3 requires-python = ">=3.11" [[package]] @@ -752,7 +752,7 @@ wheels = [ [[package]] name = "meshcore-stats" -version = "0.2.9" +version = "0.2.10" source = { editable = "." } dependencies = [ { name = "jinja2" },