From a42fd497b0944302886f9f3203abc31d04e720d6 Mon Sep 17 00:00:00 2001 From: Arnaud Date: Sun, 12 Jul 2026 15:08:07 +0200 Subject: [PATCH] chore: bump version to 0.3.1, changelog entry --- CHANGELOG.md | 10 ++++++++++ apps/web/lib/changelog.ts | 14 +++++++++++++- apps/web/package.json | 2 +- package.json | 2 +- 4 files changed, 25 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 97366a2..2a2070f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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. +## 0.3.1 — 2026-07-12 + +### Added +- A free-text "describe what you're after" field for batch-cooking generation, matching the standard recipe generator. + +### Fixed +- AI recipe generation used a separate language picker instead of following the app's own language — removed, generation now always matches your app language. +- The bulk-select action bar on the recipe list could show a horizontal scrollbar on desktop even though there was room to grow. +- Recipes imported from a URL never actually saved their source URL — the "Source: ..." link on the recipe page was dead code until now. + ## 0.3.0 — 2026-07-12 ### Added diff --git a/apps/web/lib/changelog.ts b/apps/web/lib/changelog.ts index ea5148c..1eb6210 100644 --- a/apps/web/lib/changelog.ts +++ b/apps/web/lib/changelog.ts @@ -1,5 +1,5 @@ // Mirrors CHANGELOG.md at the repo root — update both together. -export const APP_VERSION = "0.3.0"; +export const APP_VERSION = "0.3.1"; export type ChangelogEntry = { version: string; @@ -10,6 +10,18 @@ export type ChangelogEntry = { }; export const CHANGELOG: ChangelogEntry[] = [ + { + version: "0.3.1", + date: "2026-07-12", + added: [ + "A free-text \"describe what you're after\" field for batch-cooking generation, matching the standard recipe generator.", + ], + fixed: [ + "AI recipe generation used a separate language picker instead of following the app's own language.", + "The bulk-select action bar on the recipe list could show a horizontal scrollbar on desktop even with room to grow.", + "Recipes imported from a URL never actually saved their source URL.", + ], + }, { version: "0.3.0", date: "2026-07-12", diff --git a/apps/web/package.json b/apps/web/package.json index 2a76048..36eaacf 100644 --- a/apps/web/package.json +++ b/apps/web/package.json @@ -1,6 +1,6 @@ { "name": "@epicure/web", - "version": "0.3.0", + "version": "0.3.1", "private": true, "scripts": { "dev": "next dev", diff --git a/package.json b/package.json index 5eec904..431ebdd 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "epicure", - "version": "0.3.0", + "version": "0.3.1", "private": true, "scripts": { "dev": "pnpm --filter web dev",