Skip to content

Commit 245b0d2

Browse files
committed
Revert "chore(release): 1.0.1"
This reverts commit 266aa36.
1 parent 266aa36 commit 245b0d2

4 files changed

Lines changed: 5 additions & 29 deletions

File tree

CHANGELOG.md

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -2,16 +2,6 @@
22

33
All notable changes to Forge are tracked here. Follows [Keep a Changelog](https://keepachangelog.com/en/1.1.0/).
44

5-
## [1.0.1] - 2026-04-29
6-
7-
Patch release: ships the MCP server surface (`forge mcp serve`) that landed after 1.0.0, plus a CI fix that unblocks the Windows artifacts job in the release workflow.
8-
9-
### Added
10-
- **Forge as an MCP server** (`forge mcp serve`). Exposes the runtime as MCP tools so Claude Desktop, Cursor, Continue, and any other MCP client can plan and run Forge tasks from their own chat. Two trust tiers: read-only (default) exposes `forge_status`, `forge_plan`, `forge_get_task`, `forge_list_tasks`; `--allow-execute` (or `FORGE_MCP_ALLOW_EXECUTE=true`) adds `forge_run` and `forge_cancel_task`. Wraps the same `orchestrateRun()` entry point as the CLI/REPL/dashboard, so MCP-driven plans are byte-identical paths. See `docs/MCP-SERVER.md` for per-client setup.
11-
12-
### Fixed
13-
- **Release workflow Windows artifacts**: the three install steps in `release.yml` used bash-only constructs (`2>/dev/null`, `||`-grouped fallbacks, `rm -rf`) which PowerShell parses as filesystem paths. Force `shell: bash` so the Windows runner uses Git Bash. The artifacts (win32-x64) job no longer crashes with `Could not find a part of the path 'D:\dev\null'`.
14-
155
## [1.0.0] - 2026-04-27
166

177
First stable release. The runtime, agentic loop, persistence model, permission system, sandbox, and provider abstractions are now considered stable surface area. Breaking changes from here on bump MAJOR.

RELEASES.md

Lines changed: 2 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -443,10 +443,10 @@ FROM ghcr.io/hoangsonw/forge-agentic-coding-cli:0.2.0
443443

444444
```bash
445445
# npm — downgrade explicitly.
446-
npm install -g @hoangsonw/forge@1.0.1
446+
npm install -g @hoangsonw/forge@1.0.0
447447

448448
# Docker — swap the tag.
449-
docker pull ghcr.io/hoangsonw/forge-agentic-coding-cli:1.0.1
449+
docker pull ghcr.io/hoangsonw/forge-agentic-coding-cli:1.0.0
450450

451451
# Tell the built-in updater to stop nagging about a broken version.
452452
forge update ignore 0.2.0
@@ -644,20 +644,6 @@ Stable within a MAJOR. Migrations under [`src/migrations/runner.ts`](src/migrati
644644
<!-- Newest at the top. Keep the template from
645645
"Release-notes template" above. -->
646646

647-
### v1.0.1 — 2026-04-29
648-
649-
#### Highlights
650-
- **Forge as an MCP server** (`forge mcp serve`) — Claude Desktop, Cursor, Continue, and any MCP client can now plan and run Forge tasks from their own chat. Read-only by default; opt in to execution with `--allow-execute`.
651-
- **Release workflow fix** — Windows artifacts job no longer crashes on `2>/dev/null` because the install steps now run under Git Bash.
652-
653-
#### Added
654-
- `forge mcp serve` subcommand with `--allow-execute` and `--cwd` flags.
655-
- New tools: `forge_status`, `forge_plan`, `forge_get_task`, `forge_list_tasks`, `forge_run`, `forge_cancel_task`.
656-
- `docs/MCP-SERVER.md` with per-client (Claude Desktop, Cursor, plain MCP) setup.
657-
658-
#### Fixed
659-
- `.github/workflows/release.yml` install steps now force `shell: bash` so the Windows runner stops parsing `/dev/null` as a path.
660-
661647
### v1.0.0 — 2026-04-27
662648

663649
#### Highlights

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@hoangsonw/forge",
3-
"version": "1.0.1",
3+
"version": "1.0.0",
44
"description": "Forge - a local-first, multi-agent, programmable software-engineering runtime",
55
"license": "MIT",
66
"author": "Son Nguyen (hoangsonw)",

0 commit comments

Comments
 (0)