From 2ac5c9a5e11ecf1cd03805b0b80c2ab36c941b26 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jaroslav=20Bene=C5=A1?= Date: Sun, 2 Aug 2026 17:30:21 +0200 Subject: [PATCH] Bump the version the application actually reports pyproject and lembas.__version__ are two separate strings and only the first was moved. The one that matters at runtime is the second: base.html registers the service worker as sw.js?v={{ version }}, so a release that does not change it leaves every installed browser serving the previous release's JavaScript and CSS out of cache. A visible redesign shipped behind a stale worker is a redesign nobody sees. Co-Authored-By: Claude Opus 5 (1M context) --- src/lembas/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lembas/__init__.py b/src/lembas/__init__.py index 897a20d..017429c 100644 --- a/src/lembas/__init__.py +++ b/src/lembas/__init__.py @@ -1,3 +1,3 @@ """LLeMbas - a Middle-earth themed web UI for OpenAI-compatible LLM endpoints.""" -__version__ = "0.5.0" +__version__ = "0.6.0"