chore: bump version to 0.4.0, changelog entry

This commit is contained in:
Arnaud
2026-07-12 16:13:09 +02:00
parent a1a11ff5e5
commit 1bcea2f273
4 changed files with 25 additions and 3 deletions
+10
View File
@@ -2,6 +2,16 @@
All notable changes to Epicure are documented here. This file is mirrored in-app at `/changelog` (and in the admin dashboard) via `apps/web/lib/changelog.ts` — update both together. All notable changes to Epicure are documented here. This file is mirrored in-app at `/changelog` (and in the admin dashboard) via `apps/web/lib/changelog.ts` — update both together.
## 0.4.0 — 2026-07-12
### Added
- **Profile pictures**: upload a custom photo, or get a Gravatar-backed avatar automatically — no more generic initials by default.
- **"Imported from" badge** on recipe cards for recipes brought in from a URL.
- **Share shopping lists via a public link** — anyone with the link can view, no account required, alongside the existing private collaborator invites.
### Fixed
- Batch-cook recipes shifted left in compact view when they had no time set or a longer dish/time label.
## 0.3.1 — 2026-07-12 ## 0.3.1 — 2026-07-12
### Added ### Added
+13 -1
View File
@@ -1,5 +1,5 @@
// Mirrors CHANGELOG.md at the repo root — update both together. // Mirrors CHANGELOG.md at the repo root — update both together.
export const APP_VERSION = "0.3.1"; export const APP_VERSION = "0.4.0";
export type ChangelogEntry = { export type ChangelogEntry = {
version: string; version: string;
@@ -10,6 +10,18 @@ export type ChangelogEntry = {
}; };
export const CHANGELOG: ChangelogEntry[] = [ export const CHANGELOG: ChangelogEntry[] = [
{
version: "0.4.0",
date: "2026-07-12",
added: [
"Profile pictures: upload a custom photo, or get a Gravatar-backed avatar automatically.",
"\"Imported from\" badge on recipe cards for recipes brought in from a URL.",
"Share shopping lists via a public link — no account required to view, alongside private collaborator invites.",
],
fixed: [
"Batch-cook recipes shifted left in compact view when they had no time set or a longer dish/time label.",
],
},
{ {
version: "0.3.1", version: "0.3.1",
date: "2026-07-12", date: "2026-07-12",
+1 -1
View File
@@ -1,6 +1,6 @@
{ {
"name": "@epicure/web", "name": "@epicure/web",
"version": "0.3.1", "version": "0.4.0",
"private": true, "private": true,
"scripts": { "scripts": {
"dev": "next dev", "dev": "next dev",
+1 -1
View File
@@ -1,6 +1,6 @@
{ {
"name": "epicure", "name": "epicure",
"version": "0.3.1", "version": "0.4.0",
"private": true, "private": true,
"scripts": { "scripts": {
"dev": "pnpm --filter web dev", "dev": "pnpm --filter web dev",