chore: bump version to 0.3.1, changelog entry

This commit is contained in:
Arnaud
2026-07-12 15:08:07 +02:00
parent 13128df19f
commit a42fd497b0
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.
## 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
+13 -1
View File
@@ -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",
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "@epicure/web",
"version": "0.3.0",
"version": "0.3.1",
"private": true,
"scripts": {
"dev": "next dev",
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "epicure",
"version": "0.3.0",
"version": "0.3.1",
"private": true,
"scripts": {
"dev": "pnpm --filter web dev",