From 25d4622aa4cb877de079a3bdf5825b20359701ca Mon Sep 17 00:00:00 2001 From: echoparkbaby Date: Fri, 27 Feb 2026 06:35:30 -0500 Subject: [PATCH] Bump version to 1.0.0-8 Co-Authored-By: Claude Sonnet 4.6 --- claude-sandbox/truenas-burnin/CLAUDE.md | 2 +- claude-sandbox/truenas-burnin/app/config.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/claude-sandbox/truenas-burnin/CLAUDE.md b/claude-sandbox/truenas-burnin/CLAUDE.md index 0c99e7e..da4cd22 100644 --- a/claude-sandbox/truenas-burnin/CLAUDE.md +++ b/claude-sandbox/truenas-burnin/CLAUDE.md @@ -209,7 +209,7 @@ All read from `.env` via `pydantic-settings`. See `.env.example` for full list. | `TEMP_WARN_C` | `46` | Temperature warning threshold (°C) | | `TEMP_CRIT_C` | `55` | Temperature critical threshold — precheck fails above this | | `BAD_BLOCK_THRESHOLD` | `0` | Max bad blocks allowed before surface_validate fails (0 = any bad = fail) | -| `APP_VERSION` | `1.0.0-7` | Displayed in header version badge | +| `APP_VERSION` | `1.0.0-8` | Displayed in header version badge | | `SSH_HOST` | `` | TrueNAS SSH hostname/IP — empty disables SSH mode (uses mock/REST) | | `SSH_PORT` | `22` | TrueNAS SSH port | | `SSH_USER` | `root` | TrueNAS SSH username | diff --git a/claude-sandbox/truenas-burnin/app/config.py b/claude-sandbox/truenas-burnin/app/config.py index 7c1f3cf..393aeb3 100644 --- a/claude-sandbox/truenas-burnin/app/config.py +++ b/claude-sandbox/truenas-burnin/app/config.py @@ -68,7 +68,7 @@ class Settings(BaseSettings): ssh_key: str = "" # PEM private key content (paste full key including headers) # Application version — used by the /api/v1/updates/check endpoint - app_version: str = "1.0.0-7" + app_version: str = "1.0.0-8" settings = Settings()