11 lines
490 B
JavaScript
11 lines
490 B
JavaScript
export const APP_VERSION = '0.22.2';
|
|
export const APP_NAME = 'BillTracker';
|
|
|
|
export const RELEASE_NOTES = {
|
|
version: '0.22.2',
|
|
date: '2026-05-10',
|
|
highlights: [
|
|
{ icon: '🔒', title: 'Session Rotation on Password Change', desc: 'All other sessions are invalidated when you change your password. Current session gets a new ID.' },
|
|
{ icon: '🚪', title: 'Logout All Devices', desc: 'New /api/auth/logout-all endpoint lets you sign out from every device at once.' },
|
|
],
|
|
}; |