From 3b212a3c6d21ada4b066c6dc0bc9ea3da62c5a12 Mon Sep 17 00:00:00 2001 From: Maple <132198239+rsecss@users.noreply.github.com> Date: Sun, 24 May 2026 01:43:27 +0800 Subject: [PATCH] chore: release v0.7.0 Co-Authored-By: Claude Opus 4.7 (1M context) --- CHANGELOG.md | 19 +++++++++++++++++++ package.json | 2 +- src-tauri/Cargo.lock | 2 +- src-tauri/Cargo.toml | 2 +- src-tauri/tauri.conf.json | 2 +- 5 files changed, 23 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c13869a..29b0489 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -19,6 +19,25 @@ Each version body uses the following categories (see Line format: `- imperative-lowercase description (#NN) (sha7)`. PR number is omitted when the change predates the pull-request workflow. +## [0.7.0] - 2026-05-24 + +### ๐Ÿ› ๏ธ Fixes + +- clear 8 npm vulnerabilities including vite high-severity advisories (#28) (6b15031) +- harden stat export path with transactional migration and bounded writer channel (#27) (2d99871) +- degrade macOS fullscreen detection capability to false until real implementation lands (#29) (2e94465) + +### ๐Ÿงช Refactor + +- WindowPort and TrayPort traits expose tray/window services to the test build (#32) (a5e20c4) +- extract pure helpers and EffectSink trait for timer effect dispatch (#31) (36cf175) +- remove defensive/fallback code patterns across services and pages (#30) (e97b055) + +### ๐Ÿ”ง Maintenance + +- raise frontend and backend coverage gates to 90% lines / 85% functions (#33) (6d966f2) +- add initial 80% lines / 70% functions coverage gate and cargo-llvm-cov pipeline (#26) (c66a499) + ## [0.6.0] - 2026-05-23 ### ๐ŸŽ‰ Features diff --git a/package.json b/package.json index 2f6cc00..f602cb4 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "eyezen", - "version": "0.6.0", + "version": "0.7.0", "private": true, "license": "GPL-3.0-or-later", "type": "module", diff --git a/src-tauri/Cargo.lock b/src-tauri/Cargo.lock index 5919dcd..578bc22 100644 --- a/src-tauri/Cargo.lock +++ b/src-tauri/Cargo.lock @@ -1034,7 +1034,7 @@ dependencies = [ [[package]] name = "eyezen" -version = "0.6.0" +version = "0.7.0" dependencies = [ "arc-swap", "chrono", diff --git a/src-tauri/Cargo.toml b/src-tauri/Cargo.toml index 52b5807..e2927f3 100644 --- a/src-tauri/Cargo.toml +++ b/src-tauri/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "eyezen" -version = "0.6.0" +version = "0.7.0" edition = "2021" license = "GPL-3.0-or-later" diff --git a/src-tauri/tauri.conf.json b/src-tauri/tauri.conf.json index 0c43d11..d935540 100644 --- a/src-tauri/tauri.conf.json +++ b/src-tauri/tauri.conf.json @@ -1,7 +1,7 @@ { "$schema": "https://schema.tauri.app/config/2", "productName": "Eyezen", - "version": "0.6.0", + "version": "0.7.0", "identifier": "com.eyezen.app", "build": { "beforeDevCommand": "npm run dev",