Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 19 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "eyezen",
"version": "0.6.0",
"version": "0.7.0",
"private": true,
"license": "GPL-3.0-or-later",
"type": "module",
Expand Down
2 changes: 1 addition & 1 deletion src-tauri/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion src-tauri/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "eyezen"
version = "0.6.0"
version = "0.7.0"
edition = "2021"
license = "GPL-3.0-or-later"

Expand Down
2 changes: 1 addition & 1 deletion src-tauri/tauri.conf.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down
Loading