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
+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",