BillTracker/client/lib/version.js

13 lines
543 B
JavaScript
Raw Normal View History

export const APP_VERSION = '0.19.2';
2026-05-03 19:51:57 -05:00
export const APP_NAME = 'BillTracker';
export const RELEASE_NOTES = {
version: '0.19.2',
date: '2026-05-09',
2026-05-03 19:51:57 -05:00
highlights: [
{ icon: '🛡️', title: 'Legacy database migration fix', desc: 'Users upgrading from older versions can now log in.' },
{ icon: '🔒', title: 'Security hardening', desc: 'Path traversal protection, content redaction, error sanitization.' },
{ icon: '🪟', title: 'React Error Boundaries', desc: 'App no longer crashes to white screen on errors.' },
2026-05-03 19:51:57 -05:00
],
};