Skip to content

Commit 81d45dd

Browse files
committed
0.0.104
1 parent 6aaf176 commit 81d45dd

File tree

6 files changed

+25
-4
lines changed

6 files changed

+25
-4
lines changed

CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,17 @@ Past releases are archived in [`changes/releases/`](changes/releases/).
88

99
## [Unreleased]
1010

11+
## [0.0.104] — 2026-04-10
12+
13+
### Features
14+
15+
- feat: implement cross-platform daemon update hooks
16+
- - Add pre-update and post-update hooks for Tauri updater
17+
- The daemon is now properly stopped before updates and restarted afterward,
18+
- Fix Windows release: check both target paths for skill.exe
19+
- The release workflow was failing because the 'Log binary dependencies' step
20+
- This change makes the step check both locations (target-specific first, then
21+
1122
## [0.0.103] — 2026-04-10
1223

1324
### Features

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

changes/releases/0.0.104.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
## [0.0.104] — 2026-04-10
2+
3+
### Features
4+
5+
- feat: implement cross-platform daemon update hooks
6+
- - Add pre-update and post-update hooks for Tauri updater
7+
- The daemon is now properly stopped before updates and restarted afterward,
8+
- Fix Windows release: check both target paths for skill.exe
9+
- The release workflow was failing because the 'Log binary dependencies' step
10+
- This change makes the step check both locations (target-specific first, then

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "neuroskill",
3-
"version": "0.0.103",
3+
"version": "0.0.104",
44
"description": "",
55
"type": "module",
66
"scripts": {

src-tauri/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "skill"
3-
version = "0.0.103"
3+
version = "0.0.104"
44
description = "A Tauri App"
55
authors = ["NeuroSkill authors"]
66
edition = "2021"

src-tauri/tauri.conf.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"$schema": "https://schema.tauri.app/config/2",
33
"productName": "NeuroSkill",
4-
"version": "0.0.103",
4+
"version": "0.0.104",
55
"identifier": "com.neuroskill.skill",
66
"build": {
77
"beforeDevCommand": "npm run dev",

0 commit comments

Comments
 (0)