Skip to content

Commit 388072f

Browse files
committed
chore: prepare 0.3.1-beta.0 release
1 parent 7e07375 commit 388072f

4 files changed

Lines changed: 9 additions & 3 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.3.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.3.1-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: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,12 @@
22

33
## Unreleased
44

5+
## 0.3.1-beta.0
6+
7+
### Summary
8+
9+
Adapter config hardening for the v0.3 beta line. These changes keep `codex-exec` as the only supported provider while adding optional local adapter config ergonomics and package-surface hygiene.
10+
511
### Changed
612

713
- Added `cewp init --with-config` to write a starter optional adapter config template.

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.3.0-beta.0",
3+
"version": "0.3.1-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
@@ -1161,7 +1161,7 @@ async function main() {
11611161
const pack = run("npm", ["pack", "--dry-run"], { cwd: cewpRoot, timeout: 120000 });
11621162
const packOutput = `${pack.stdout}\n${pack.stderr}`;
11631163
assertExit(pack, 0, "npm pack --dry-run");
1164-
assert(packageJson.version === "0.3.0-beta.0", `unexpected package version: ${packageJson.version}`);
1164+
assert(packageJson.version === "0.3.1-beta.0", `unexpected package version: ${packageJson.version}`);
11651165
assert(packOutput.includes("docs/adapter-contract.md"), "adapter contract doc should be packed");
11661166
assert(!packOutput.includes(".cewp/"), ".cewp/ should not be packed");
11671167
assert(!packOutput.includes(".cewp-worktrees/"), ".cewp-worktrees/ should not be packed");

0 commit comments

Comments
 (0)