From 9838efb5931d7045e6e385e887b582d5d50c841e Mon Sep 17 00:00:00 2001 From: TheFlow Date: Mon, 3 Nov 2025 13:02:29 +1300 Subject: [PATCH] fix: force cache invalidation - bump to v0.1.4 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit CRITICAL: Force all clients to dump old cached content - Increment service worker CACHE_VERSION from 0.1.3 to 0.1.4 - Update version.json to 0.1.4 - Forces immediate cache invalidation for all users - Ensures Phase 2 content (Agent Lightning, Discord) visible immediately 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- public/service-worker.js | 2 +- public/version.json | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/public/service-worker.js b/public/service-worker.js index 583bfedd..57f2ee1f 100644 --- a/public/service-worker.js +++ b/public/service-worker.js @@ -5,7 +5,7 @@ * - PWA functionality */ -const CACHE_VERSION = '0.1.3'; +const CACHE_VERSION = '0.1.4'; const CACHE_NAME = `tractatus-v${CACHE_VERSION}`; const VERSION_CHECK_INTERVAL = 3600000; // 1 hour in milliseconds diff --git a/public/version.json b/public/version.json index ffeaaeb7..e1071198 100644 --- a/public/version.json +++ b/public/version.json @@ -1,6 +1,6 @@ { - "version": "0.1.3", - "buildDate": "2025-11-03T01:53:25.656Z", + "version": "0.1.4", + "buildDate": "2025-11-03T02:15:00.000Z", "changelog": [ "Phase 2: Agent Lightning integration complete across all pages", "Homepage: Added community section with Discord invite links",