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
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
# Changelog

## What's New in v0.9.7
## What's New in v0.9.8

### Build Fix
- **Fixed `npm ci` lockfile mismatch** — `package-lock.json` was out of sync with `package.json` after the TypeScript 6.0.3 upgrade, causing the v0.9.7 release workflow to fail. The lockfile is now committed in sync.

### Dependency Updates
- **rand 0.10.1** — soundness bug fix (rust-random/rand#1763); no API changes
Expand Down
5 changes: 4 additions & 1 deletion RELEASE_NOTES.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
## What's New in v0.9.7
## What's New in v0.9.8

### Build Fix
- **Fixed `npm ci` lockfile mismatch** — `package-lock.json` was out of sync with `package.json` after the TypeScript 6.0.3 upgrade, causing the v0.9.7 release workflow to fail. The lockfile is now committed in sync.
Comment on lines +3 to +4
Copy link

Copilot AI Apr 21, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This release note claims the lockfile is now “committed in sync”, but package-lock.json (in this PR) still reports version 0.9.7 while package.json is 0.9.8. Either regenerate/update the lockfile to match, or adjust this text so it reflects what’s actually been fixed.

Copilot uses AI. Check for mistakes.

### Dependency Updates
- **rand 0.10.1** — soundness bug fix (rust-random/rand#1763); no API changes
Expand Down
14 changes: 7 additions & 7 deletions package-lock.json

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

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "comfyui-desktop",
"private": true,
"license": "MIT",
"version": "0.9.7",
"version": "0.9.8",
"type": "module",
"scripts": {
"dev": "vite",
Expand Down
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 = "comfyui-desktop"
version = "0.9.7"
version = "0.9.8"
edition = "2021"
license = "MIT"
default-run = "comfyui-desktop"
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://raw.githubusercontent.com/nicerlab/files/main/tauri/tauri.conf.json.schema",
"productName": "MooshieUI",
"version": "0.9.7",
"version": "0.9.8",
"identifier": "com.mooshieui.desktop",
"build": {
"frontendDist": "../dist",
Expand Down
Loading