-
Notifications
You must be signed in to change notification settings - Fork 8
chore(release): 1.0.1 #26
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
|
@@ -443,10 +443,10 @@ FROM ghcr.io/hoangsonw/forge-agentic-coding-cli:0.2.0 | |||||||||||||||||||
|
|
||||||||||||||||||||
| ```bash | ||||||||||||||||||||
| # npm — downgrade explicitly. | ||||||||||||||||||||
| npm install -g @hoangsonw/forge@1.0.0 | ||||||||||||||||||||
| npm install -g @hoangsonw/forge@1.0.1 | ||||||||||||||||||||
|
|
||||||||||||||||||||
| # Docker — swap the tag. | ||||||||||||||||||||
| docker pull ghcr.io/hoangsonw/forge-agentic-coding-cli:1.0.0 | ||||||||||||||||||||
| docker pull ghcr.io/hoangsonw/forge-agentic-coding-cli:1.0.1 | ||||||||||||||||||||
|
Comment on lines
+446
to
+449
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. In the Roll back section, the examples should point to a known stable version (e.g.,
Suggested change
|
||||||||||||||||||||
|
|
||||||||||||||||||||
| # Tell the built-in updater to stop nagging about a broken version. | ||||||||||||||||||||
| forge update ignore 0.2.0 | ||||||||||||||||||||
|
|
@@ -644,6 +644,20 @@ Stable within a MAJOR. Migrations under [`src/migrations/runner.ts`](src/migrati | |||||||||||||||||||
| <!-- Newest at the top. Keep the template from | ||||||||||||||||||||
| "Release-notes template" above. --> | ||||||||||||||||||||
|
|
||||||||||||||||||||
| ### v1.0.1 — 2026-04-29 | ||||||||||||||||||||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. |
||||||||||||||||||||
|
|
||||||||||||||||||||
| #### Highlights | ||||||||||||||||||||
| - **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`. | ||||||||||||||||||||
| - **Release workflow fix** — Windows artifacts job no longer crashes on `2>/dev/null` because the install steps now run under Git Bash. | ||||||||||||||||||||
|
|
||||||||||||||||||||
| #### Added | ||||||||||||||||||||
| - `forge mcp serve` subcommand with `--allow-execute` and `--cwd` flags. | ||||||||||||||||||||
| - New tools: `forge_status`, `forge_plan`, `forge_get_task`, `forge_list_tasks`, `forge_run`, `forge_cancel_task`. | ||||||||||||||||||||
| - `docs/MCP-SERVER.md` with per-client (Claude Desktop, Cursor, plain MCP) setup. | ||||||||||||||||||||
|
|
||||||||||||||||||||
| #### Fixed | ||||||||||||||||||||
| - `.github/workflows/release.yml` install steps now force `shell: bash` so the Windows runner stops parsing `/dev/null` as a path. | ||||||||||||||||||||
|
|
||||||||||||||||||||
| ### v1.0.0 — 2026-04-27 | ||||||||||||||||||||
|
|
||||||||||||||||||||
| #### Highlights | ||||||||||||||||||||
|
|
||||||||||||||||||||
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
| @@ -1,6 +1,6 @@ | ||||||
| { | ||||||
| "name": "@hoangsonw/forge", | ||||||
| "version": "1.0.0", | ||||||
| "version": "1.0.1", | ||||||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. According to the versioning policy defined in
Suggested change
|
||||||
| "description": "Forge - a local-first, multi-agent, programmable software-engineering runtime", | ||||||
| "license": "MIT", | ||||||
| "author": "Son Nguyen (hoangsonw)", | ||||||
|
|
||||||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
As noted in the
package.jsonfeedback, this release introduces a new feature and should follow the project's SemVer policy by bumping the MINOR version to1.1.0.