Skip to content

Commit 4e8b6fd

Browse files
authored
docs: update recommended CLI version to 0.5.0 (#166)
* docs: update recommended CLI version to 0.5.0 Patchloom CLI v0.5.0 was released with HTTP MCP transport, execute_plan tool, and expanded library API. Update README recommended version from 0.4.0 to 0.5.0. Signed-off-by: Sebastien Tardif <sebtardif@ncf.ca> * ci: validate dependency results in ci gate job The ci gate job unconditionally reported success without checking whether unit-test, build, or integration-test actually passed. Add result validation so failures propagate correctly. This pairs with a ruleset update that replaces individual matrix check requirements (which get skipped on docs-only PRs) with the single ci gate check. Signed-off-by: Sebastien Tardif <sebtardif@ncf.ca> --------- Signed-off-by: Sebastien Tardif <sebtardif@ncf.ca>
1 parent 62e2eee commit 4e8b6fd

2 files changed

Lines changed: 9 additions & 2 deletions

File tree

.github/workflows/ci.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -195,4 +195,11 @@ jobs:
195195
steps:
196196
- name: All CI jobs passed (or were correctly skipped for docs-only change)
197197
run: |
198+
results=("${{ needs.unit-test.result }}" "${{ needs.build.result }}" "${{ needs.integration-test.result }}")
199+
for r in "${results[@]}"; do
200+
if [[ "$r" != "success" && "$r" != "skipped" ]]; then
201+
echo "FAILED: dependency reported '$r'"
202+
exit 1
203+
fi
204+
done
198205
echo "CI gate passed."

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ The extension detects outdated CLI builds and warns with upgrade guidance. It re
148148
Set `patchloom.path` in settings, or add the CLI to your `PATH`.
149149

150150
**CLI compatibility warning**
151-
Run `Patchloom: Open Releases` to download the latest release. The extension requires 0.1.0 or newer; 0.4.0 is recommended.
151+
Run `Patchloom: Open Releases` to download the latest release. The extension requires 0.1.0 or newer; 0.5.0 is recommended.
152152

153153
**MCP config not injected**
154154
Run `Patchloom: Configure MCP` and select the target editor config.
@@ -183,7 +183,7 @@ File bugs and feature requests at [patchloom/patchloom-vscode/issues](https://gi
183183
## Requirements
184184

185185
- VS Code 1.90 or newer (or compatible editors: Cursor, Windsurf, VSCodium)
186-
- [Patchloom CLI](https://github.com/patchloom/patchloom) 0.1.0 or newer (0.4.0+ recommended for latest features including append, AST ops, and --confirm)
186+
- [Patchloom CLI](https://github.com/patchloom/patchloom) 0.1.0 or newer (0.5.0+ recommended for latest features including HTTP MCP transport, execute_plan, and expanded library API)
187187

188188
## Contributing
189189

0 commit comments

Comments
 (0)