Bump version to 3.8.9: Add version display to profile
All checks were successful
Build and Push Docker Image / build-and-push (push) Successful in 44s

This commit is contained in:
poignatov
2026-01-11 15:41:10 +03:00
parent 08f81887b0
commit 8023fb9108
3 changed files with 4 additions and 3 deletions

View File

@@ -1 +1 @@
3.8.8
3.8.9

View File

@@ -1,6 +1,6 @@
{
"name": "play-life-web",
"version": "3.8.8",
"version": "3.8.9",
"type": "module",
"scripts": {
"dev": "vite",

View File

@@ -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 */}
<div className="mt-8 text-center text-gray-400 text-sm">
<p>Play Life</p>
<p>PlayLife v{packageJson.version}</p>
</div>
</div>
)