diff --git a/CHANGELOG.md b/CHANGELOG.md index 5d41477..21bdbc5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,15 @@ 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.7.0 — 2026-07-12 + +### Added +- **General cooking-question chatbot** on the recipes homepage — ask technique/substitution/timing questions not tied to a specific recipe. + +### Fixed +- API keys always showed "never used" — middleware was blocking every Bearer-key request before it ever reached the code that verifies the key and records usage. +- The webhooks documentation page had no way back to webhooks settings. + ## 0.6.0 — 2026-07-12 ### Added diff --git a/apps/web/lib/changelog.ts b/apps/web/lib/changelog.ts index bb910ac..c74772e 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.6.0"; +export const APP_VERSION = "0.7.0"; export type ChangelogEntry = { version: string; @@ -11,6 +11,17 @@ export type ChangelogEntry = { }; export const CHANGELOG: ChangelogEntry[] = [ + { + version: "0.7.0", + date: "2026-07-12", + added: [ + "General cooking-question chatbot on the recipes homepage — ask technique/substitution/timing questions not tied to a specific recipe.", + ], + fixed: [ + "API keys always showed \"never used\" — middleware was blocking every Bearer-key request before it reached the code that verifies the key and records usage.", + "The webhooks documentation page had no way back to webhooks settings.", + ], + }, { version: "0.6.0", date: "2026-07-12", diff --git a/apps/web/package.json b/apps/web/package.json index b61591a..6bf1bd0 100644 --- a/apps/web/package.json +++ b/apps/web/package.json @@ -1,6 +1,6 @@ { "name": "@epicure/web", - "version": "0.6.0", + "version": "0.7.0", "private": true, "scripts": { "dev": "next dev", diff --git a/package.json b/package.json index 10ee3e4..fd60f5a 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "epicure", - "version": "0.6.0", + "version": "0.7.0", "private": true, "scripts": { "dev": "pnpm --filter web dev",