24 lines
597 B
TypeScript
24 lines
597 B
TypeScript
|
|
export interface ChangelogEntry {
|
||
|
|
version: string
|
||
|
|
date: string
|
||
|
|
changes: string[]
|
||
|
|
}
|
||
|
|
|
||
|
|
export const changelog: ChangelogEntry[] = [
|
||
|
|
{
|
||
|
|
version: '0.4.3',
|
||
|
|
date: '2026-04-22',
|
||
|
|
changes: ['changelog.new_0_4_3_1', 'changelog.new_0_4_3_2', 'changelog.new_0_4_3_3', 'changelog.new_0_4_3_4'],
|
||
|
|
},
|
||
|
|
{
|
||
|
|
version: '0.4.2',
|
||
|
|
date: '2026-03-20',
|
||
|
|
changes: ['changelog.new_0_4_2_1', 'changelog.new_0_4_2_2', 'changelog.new_0_4_2_3', 'changelog.new_0_4_2_4', 'changelog.new_0_4_2_5'],
|
||
|
|
},
|
||
|
|
{
|
||
|
|
version: '0.4.1',
|
||
|
|
date: '2026-04-21',
|
||
|
|
changes: ['changelog.new_0_4_1_1'],
|
||
|
|
},
|
||
|
|
]
|