BillTracker/client/lib/version.js

11 lines
490 B
JavaScript
Raw Normal View History

export const APP_VERSION = '0.22.2';
2026-05-03 19:51:57 -05:00
export const APP_NAME = 'BillTracker';
export const RELEASE_NOTES = {
version: '0.22.2',
date: '2026-05-10',
2026-05-03 19:51:57 -05:00
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.' },
2026-05-03 19:51:57 -05:00
],
};