clawmacdo 0.15.0 → 0.16.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +10 -5
  2. package/package.json +4 -4
package/README.md CHANGED
@@ -5,13 +5,18 @@
5
5
 
6
6
  Rust CLI tool for deploying [OpenClaw](https://openclaw.ai) to **DigitalOcean**, **AWS Lightsail**, **Tencent Cloud**, **Microsoft Azure**, or **BytePlus Cloud** — with Claude Code, Codex, and Gemini CLI pre-installed.
7
7
 
8
- ## ✨ What's New in v0.15.0
8
+ ## ✨ What's New in v0.16.0
9
9
 
10
- - **Windows builds fixed** — Dependencies were incorrectly scoped under unix-only target, now all platforms build correctly
11
- - **Native Windows MSVC builds** — Switched from cross-compilation to native `x86_64-pc-windows-msvc` builds on `windows-latest`
10
+ - **BytePlus destroy cleanup** — Automatically release EIP and delete VPC/subnet/security-group when destroying BytePlus instances
11
+ - **BytePlus deploy form improvements** — Auto-default primary AI model to "byteplus" when BytePlus provider selected; "Generate" button for ARK API key with endpoint selection
12
+ - **ARK API endpoints** — `POST /api/ark/endpoints` and `POST /api/ark/api-key` for ARK key generation from the web UI
13
+ - **Playwright E2E test suite** — 30 CSV-driven test scenarios covering all 5 cloud providers with all model/failover/messaging permutations
14
+
15
+ ### Previous highlights (v0.14.x – v0.15.x)
16
+ - **Windows builds fixed** — Dependencies correctly scoped, native MSVC builds
12
17
  - **`digitalocean` feature flag** — DigitalOcean provider now properly gated as a default feature
13
18
 
14
- ### Previous highlights (v0.13.x – v0.14.x)
19
+ ### Previous highlights (v0.13.x)
15
20
  - **`ark-api-key`** — Generate temporary BytePlus ARK API keys from access/secret credentials, or list endpoints with `--list`
16
21
  - **`ark-chat`** — Send prompts to BytePlus ARK models directly from the CLI
17
22
  - **`telegram-setup` / `telegram-pair`** — Configure and pair Telegram bots on deployed instances via SSH
@@ -392,5 +397,5 @@ See [CHANGELOG.md](CHANGELOG.md) for version history and breaking changes.
392
397
  ---
393
398
 
394
399
  **Last updated:** March 16, 2026
395
- **Current version:** 0.15.0
400
+ **Current version:** 0.16.0
396
401
  **Architecture version:** 2.0 (modular workspace)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "clawmacdo",
3
- "version": "0.15.0",
3
+ "version": "0.16.0",
4
4
  "description": "CLI tool for deploying OpenClaw to multiple cloud providers with pre-installed AI dev tools",
5
5
  "keywords": [
6
6
  "openclaw",
@@ -30,8 +30,8 @@
30
30
  "node": ">=16"
31
31
  },
32
32
  "optionalDependencies": {
33
- "@clawmacdo/darwin-arm64": "0.15.0",
34
- "@clawmacdo/linux-x64": "0.15.0",
35
- "@clawmacdo/win32-x64": "0.15.0"
33
+ "@clawmacdo/darwin-arm64": "0.16.0",
34
+ "@clawmacdo/linux-x64": "0.16.0",
35
+ "@clawmacdo/win32-x64": "0.16.0"
36
36
  }
37
37
  }