Skip to content

Commit 4f87f53

Browse files
committed
release: merge develop into main for v0.20.5
2 parents abbd0f4 + 71f7141 commit 4f87f53

5 files changed

Lines changed: 11 additions & 5 deletions

File tree

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [0.20.5] - 2026-04-13
9+
10+
### Fixed
11+
12+
- **Flask survives systemd restart**`pkill` pattern changed from `dashboard/backend.*app.py` to `python.*app.py`. The `cd dashboard/backend` changes CWD but the process cmdline stays `python app.py`, so the old pattern never matched and Flask kept running with stale code across restarts
13+
814
## [0.20.4] - 2026-04-13
915

1016
### Fixed

cli/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@evoapi/evo-nexus",
3-
"version": "0.20.4",
3+
"version": "0.20.5",
44
"description": "Unofficial open source toolkit for Claude Code — AI-powered business operating system",
55
"keywords": [
66
"claude-code",

install-service.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ cd $SERVICE_DIR
7474
7575
# Kill existing services (including scheduler)
7676
pkill -f 'terminal-server/bin/server.js' 2>/dev/null
77-
pkill -f 'dashboard/backend.*app.py' 2>/dev/null
77+
pkill -f 'python.*app.py' 2>/dev/null
7878
pkill -f 'python.*scheduler.py' 2>/dev/null
7979
sleep 1
8080
@@ -138,7 +138,7 @@ WorkingDirectory=$SERVICE_DIR
138138
Environment=PATH=$SERVICE_HOME/.local/bin:/usr/local/bin:/usr/bin:/bin
139139
Environment=HOME=$SERVICE_HOME
140140
ExecStart=/bin/bash $SERVICE_DIR/start-services.sh
141-
ExecStop=/bin/bash -c 'pkill -f "terminal-server/bin/server.js" 2>/dev/null; pkill -f "dashboard/backend.*app.py" 2>/dev/null; pkill -f "python.*scheduler.py" 2>/dev/null'
141+
ExecStop=/bin/bash -c 'pkill -f "terminal-server/bin/server.js" 2>/dev/null; pkill -f "python.*app.py" 2>/dev/null; pkill -f "python.*scheduler.py" 2>/dev/null'
142142
StandardOutput=append:$SERVICE_DIR/logs/service.log
143143
StandardError=append:$SERVICE_DIR/logs/service.log
144144

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "evo-nexus"
3-
version = "0.20.4"
3+
version = "0.20.5"
44
description = "Unofficial open source toolkit for Claude Code — AI-powered business operating system"
55
requires-python = ">=3.10"
66
dependencies = [

uv.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.

0 commit comments

Comments
 (0)