diff --git a/cli/CHANGELOG.md b/cli/CHANGELOG.md index fa44b3e..a84062d 100644 --- a/cli/CHANGELOG.md +++ b/cli/CHANGELOG.md @@ -1,5 +1,9 @@ # arcrun CLI Changelog +## 1.3.5 — 2026-06-11 +- fix(cli): acr update 假綠與沉默修復——部署部分失敗必須印出、deploy 迴圈逐 worker 進度、migrate 錯誤印 server 回應 + + ## 1.3.2 — 2026-06-07 - merge: kbdb recipe 公庫/私庫雙向機制 + UUID 身份(壓測前) diff --git a/cli/package.json b/cli/package.json index 2e4b282..0a7c997 100644 --- a/cli/package.json +++ b/cli/package.json @@ -1,6 +1,6 @@ { "name": "arcrun", - "version": "1.3.4", + "version": "1.3.5", "description": "AI Workflow CLI for arcrun — self-host WASM-based AI workflows on your own Cloudflare", "bin": { "acr": "dist/index.js" diff --git a/scripts/local-deploy.sh b/scripts/local-deploy.sh index 9a2d615..75b759b 100644 --- a/scripts/local-deploy.sh +++ b/scripts/local-deploy.sh @@ -275,7 +275,7 @@ if [[ "${DRY_RUN:-false}" != "true" ]]; then if [[ -f "$CHANGELOG" ]]; then tail -n +2 "$CHANGELOG"; fi } > "$TMP_CL" mv "$TMP_CL" "$CHANGELOG" - echo " · 已 bump → $NEW_V,並記錄進 $CHANGELOG(記得 commit 這兩個檔)" + echo " · 已 bump → ${NEW_V},並記錄進 ${CHANGELOG}(記得 commit 這兩個檔)" fi # 優先用 .env 的 NPM_API_TOKEN(authToken)——互動 npm login 常因 publish 政策 403。 @@ -296,7 +296,7 @@ if [[ "${DRY_RUN:-false}" != "true" ]]; then echo " 📦 publish arcrun $REMOTE_V → $LOCAL_V ..." if (cd cli && npm run build >/dev/null 2>&1 && \ NPM_CONFIG_USERCONFIG="${PUB_RC:-$HOME/.npmrc}" npm publish --access public 2>&1 | tail -3); then - echo " ✅ npm publish 完成(arcrun@$LOCAL_V)" + echo " ✅ npm publish 完成(arcrun@${LOCAL_V})" else echo " ❌ npm publish 失敗" FAILED+=("cli:npm-publish")