BillTracker/client/lib/version.js

14 lines
759 B
JavaScript

export const APP_VERSION = '0.20.1';
export const APP_NAME = 'BillTracker';
export const RELEASE_NOTES = {
version: '0.20.1',
date: '2026-05-09',
highlights: [
{ icon: '🚀', title: 'Code splitting', desc: 'Lazy loading for faster initial page load.' },
{ icon: '🗺️', title: 'Admin Dashboard', desc: 'New admin-only dashboard with roadmap and activity log.' },
{ icon: '🧹', title: 'Session token cleanup', desc: 'Expired sessions auto-purged on startup, daily, and on login.' },
{ icon: '🔑', title: 'Admin password reset', desc: 'INIT_ADMIN_PASS now resets existing admin passwords on legacy DBs.' },
{ icon: '🪟', title: 'React Error Boundaries', desc: 'App no longer crashes to white screen on errors.' },
],
};