Skip to content

Commit 51f1941

Browse files
authored
Merge pull request #86 from ownpilot/release/0.7.2
chore(release): 0.7.2
2 parents db741bb + 00b9e76 commit 51f1941

9 files changed

Lines changed: 10 additions & 8 deletions

File tree

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [0.7.2] - 2026-06-05
11+
1012
### Fixed
1113

1214
- **Plan cancellation is now prompt during parallel wave execution.** When every concurrency slot was full of slow steps, a cancelled plan kept spinning the `maxConcurrent` slot-wait until a step happened to finish — the wave-top abort check couldn't fire while the inner scheduling loop held control. The slot-wait (and the step-scheduling loop) now re-check `signal.aborted` and stop scheduling new steps immediately. Already-scheduled steps are still awaited via `Promise.all` before the abort is surfaced, so no in-flight promise is orphaned (which would otherwise become an unhandled rejection).

docs/architecture.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# OwnPilot Architecture
22

3-
**Version:** 0.7.1
3+
**Version:** 0.7.2
44

55
---
66

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "ownpilot-monorepo",
3-
"version": "0.7.1",
3+
"version": "0.7.2",
44
"private": true,
55
"description": "OwnPilot - Privacy-first personal AI assistant platform",
66
"type": "module",

packages/cli/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@ownpilot/cli",
3-
"version": "0.7.1",
3+
"version": "0.7.2",
44
"description": "CLI for OwnPilot",
55
"type": "module",
66
"bin": {

packages/core/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@ownpilot/core",
3-
"version": "0.7.1",
3+
"version": "0.7.2",
44
"description": "OwnPilot Core - Secure AI agent engine and tool framework",
55
"type": "module",
66
"sideEffects": false,

packages/gateway/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@ownpilot/gateway",
3-
"version": "0.7.1",
3+
"version": "0.7.2",
44
"description": "HTTP API gateway for OwnPilot",
55
"type": "module",
66
"main": "./dist/index.js",

packages/ui/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@ownpilot/ui",
3-
"version": "0.7.1",
3+
"version": "0.7.2",
44
"description": "Web UI for OwnPilot",
55
"type": "module",
66
"private": true,

start.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ Write-Host @"
6868
| | | \ \ /\ / / '_ \| |_) | | |/ _ \| __|
6969
| |_| |\ V V /| | | | __/| | | (_) | |_
7070
\___/ \_/\_/ |_| |_|_| |_|_|\___/ \__|
71-
Gateway v0.7.1
71+
Gateway v0.7.2
7272
7373
"@ -ForegroundColor Magenta
7474

start.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ banner() {
4343
| | | \ \ /\ / / '_ \| |_) | | |/ _ \| __|
4444
| |_| |\ V V /| | | | __/| | | (_) | |_
4545
\___/ \_/\_/ |_| |_|_| |_|_|\___/ \__|
46-
Gateway v0.7.1
46+
Gateway v0.7.2
4747
4848
EOF
4949
echo -e "${NC}"

0 commit comments

Comments
 (0)