v0.1.0 — Moon Base initial scaffold: auth, garden plant registry + log
This commit is contained in:
18
src/lib/changelog.ts
Normal file
18
src/lib/changelog.ts
Normal file
@@ -0,0 +1,18 @@
|
||||
// Append new entries to the TOP. Match APP_VERSION in version.ts.
|
||||
// Write for Bonna, not engineers — plain English, what changed and why.
|
||||
|
||||
export type ChangelogEntry = {
|
||||
version: string;
|
||||
date: string; // ISO yyyy-mm-dd
|
||||
changes: string[];
|
||||
};
|
||||
|
||||
export const CHANGELOG: ChangelogEntry[] = [
|
||||
{
|
||||
version: "0.1.0",
|
||||
date: "2026-06-15",
|
||||
changes: [
|
||||
"Moon Base is live! Garden module: add plants to your food forest, record where they are on your property, and keep a log of care, harvests, and observations.",
|
||||
],
|
||||
},
|
||||
];
|
||||
Reference in New Issue
Block a user