mirror of
https://github.com/zen-browser/www.git
synced 2025-07-08 17:30:01 +02:00
Started working on release notes
This commit is contained in:
parent
12cf6a6153
commit
74d44c9bd6
5 changed files with 48 additions and 3 deletions
24
src/lib/release-notes.ts
Normal file
24
src/lib/release-notes.ts
Normal file
|
@ -0,0 +1,24 @@
|
|||
|
||||
export interface ReleaseNote {
|
||||
version: string;
|
||||
date: string;
|
||||
extra?: string;
|
||||
fixes?: string[];
|
||||
features?: string[];
|
||||
breakingChanges?: string[];
|
||||
}
|
||||
|
||||
export const releaseNotes: ReleaseNote[] = [
|
||||
{
|
||||
version: "0.0.0-a.3",
|
||||
date: "11/07/2024",
|
||||
extra: "This is a test release.",
|
||||
features: [
|
||||
"Added a new feature.",
|
||||
],
|
||||
fixes: [
|
||||
"Fixed a bug.",
|
||||
],
|
||||
},
|
||||
];
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue