Skip to content

Commit bd30168

Browse files
committed
chore: prepare 0.5.0-beta.0 release
1 parent f28ae29 commit bd30168

4 files changed

Lines changed: 12 additions & 4 deletions

File tree

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ The harness uses temporary repos, checks Coordinator Mode helpers, and does not
119119

120120
## Status
121121

122-
`0.4.0-beta.0` is beta software. Use it for local-first workflow automation and dogfooding, and keep reviewing generated plans, worker output, and reviewer decisions before integrating changes.
122+
`0.5.0-beta.0` is beta software. Use it for local-first workflow automation and dogfooding, and keep reviewing generated plans, worker output, and reviewer decisions before integrating changes.
123123

124124
## License
125125

docs/release-notes.md

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,16 @@
22

33
## Unreleased
44

5+
## 0.5.0-beta.0
6+
7+
### Summary
8+
9+
Operator UX foundation for browsing, inspecting, resuming, and safely continuing Coordinator Mode runs. This release keeps providers limited to `codex-exec` and the non-executing `manual` adapter; external provider implementations are not included.
10+
11+
### Changed
12+
513
- Added `cewp run resume [run-id]` to print a read-only Markdown/JSON operator resume packet for continuing a run.
6-
- Added `--json` output for `cewp run list`, `cewp run status`, and `cewp run next`.
14+
- Added `--json` output for `cewp run list`, `cewp run status`, `cewp run next`, and `cewp run resume`.
715
- Added `cewp run list` as a read-only operator run browser for recent run state and artifact summaries.
816
- Added `cewp run next [run-id]` to print the single most relevant safe next command for a run.
917
- Added an operator-facing `cewp run status [run-id]` summary with artifact inventory and safe next-step hints.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@setrathex/codex-engineering-workflow-pack",
3-
"version": "0.4.0-beta.0",
3+
"version": "0.5.0-beta.0",
44
"description": "Local-first engineering workflow toolkit for Codex: skills, Coordinator Mode, guarded dispatch, and parallel agent workflows.",
55
"license": "MIT",
66
"repository": {

tests/harness/run-smoke.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1595,7 +1595,7 @@ async function main() {
15951595
const pack = run("npm", ["pack", "--dry-run"], { cwd: cewpRoot, timeout: 120000 });
15961596
const packOutput = `${pack.stdout}\n${pack.stderr}`;
15971597
assertExit(pack, 0, "npm pack --dry-run");
1598-
assert(packageJson.version === "0.4.0-beta.0", `unexpected package version: ${packageJson.version}`);
1598+
assert(packageJson.version === "0.5.0-beta.0", `unexpected package version: ${packageJson.version}`);
15991599
assert(packOutput.includes("docs/adapter-contract.md"), "adapter contract doc should be packed");
16001600
assert(!packOutput.includes(".cewp/"), ".cewp/ should not be packed");
16011601
assert(!packOutput.includes(".cewp-worktrees/"), ".cewp-worktrees/ should not be packed");

0 commit comments

Comments
 (0)