chore: bump version to 0.6.0, changelog entry

This commit is contained in:
Arnaud
2026-07-12 19:09:10 +02:00
parent e678e21ee8
commit b69f5845c3
4 changed files with 23 additions and 3 deletions
+9
View File
@@ -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.6.0 — 2026-07-12
### Added
- **Granular push-notification settings**: turn individual categories on/off (follows, comments, replies, reactions, ratings, mentions, leftover reminders, shared shopping list updates) instead of all-or-nothing.
### Fixed
- The push-notification toggle in Settings always showed as off, even when notifications were genuinely still enabled — it never checked the actual browser subscription state.
- The API Reference page (`/docs`) was blank — Content-Security-Policy blocked the script it needs to render.
## 0.5.1 — 2026-07-12
### Security
+12 -1
View File
@@ -1,5 +1,5 @@
// Mirrors CHANGELOG.md at the repo root — update both together.
export const APP_VERSION = "0.5.1";
export const APP_VERSION = "0.6.0";
export type ChangelogEntry = {
version: string;
@@ -11,6 +11,17 @@ export type ChangelogEntry = {
};
export const CHANGELOG: ChangelogEntry[] = [
{
version: "0.6.0",
date: "2026-07-12",
added: [
"Granular push-notification settings: turn individual categories on/off instead of all-or-nothing.",
],
fixed: [
"The push-notification toggle in Settings always showed as off, even when notifications were genuinely still enabled.",
"The API Reference page (/docs) was blank — CSP blocked the script it needs to render.",
],
},
{
version: "0.5.1",
date: "2026-07-12",
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "@epicure/web",
"version": "0.5.1",
"version": "0.6.0",
"private": true,
"scripts": {
"dev": "next dev",
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "epicure",
"version": "0.5.1",
"version": "0.6.0",
"private": true,
"scripts": {
"dev": "pnpm --filter web dev",