From 8023fb91084c451005dd18a9183b6c9712c2a1c9 Mon Sep 17 00:00:00 2001 From: poignatov Date: Sun, 11 Jan 2026 15:41:10 +0300 Subject: [PATCH] Bump version to 3.8.9: Add version display to profile --- VERSION | 2 +- play-life-web/package.json | 2 +- play-life-web/src/components/Profile.jsx | 3 ++- 3 files changed, 4 insertions(+), 3 deletions(-) diff --git a/VERSION b/VERSION index d7d8e42..203e6d5 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -3.8.8 +3.8.9 diff --git a/play-life-web/package.json b/play-life-web/package.json index 2320fef..4308c39 100644 --- a/play-life-web/package.json +++ b/play-life-web/package.json @@ -1,6 +1,6 @@ { "name": "play-life-web", - "version": "3.8.8", + "version": "3.8.9", "type": "module", "scripts": { "dev": "vite", diff --git a/play-life-web/src/components/Profile.jsx b/play-life-web/src/components/Profile.jsx index eead22c..d661ae9 100644 --- a/play-life-web/src/components/Profile.jsx +++ b/play-life-web/src/components/Profile.jsx @@ -1,5 +1,6 @@ import React from 'react' import { useAuth } from './auth/AuthContext' +import packageJson from '../../package.json' function Profile({ onNavigate }) { const { user, logout } = useAuth() @@ -97,7 +98,7 @@ function Profile({ onNavigate }) { {/* Version Info */}
-

Play Life

+

PlayLife v{packageJson.version}

)