clawmacdo 0.69.0 → 0.70.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 +11 -7
  2. package/package.json +4 -4
package/README.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # clawmacdo
2
2
 
3
+ <p align="center">
4
+ <img src="clawmacdo.png" alt="clawmacdo logo" width="280" />
5
+ </p>
6
+
3
7
  [![Release](https://github.com/kenken64/clawmacdo/actions/workflows/release.yml/badge.svg)](https://github.com/kenken64/clawmacdo/actions/workflows/release.yml)
4
8
  [![Changelog](https://github.com/kenken64/clawmacdo/actions/workflows/changelog.yml/badge.svg)](https://github.com/kenken64/clawmacdo/actions/workflows/changelog.yml)
5
9
 
@@ -845,19 +849,20 @@ clawmacdo/
845
849
  # Build all crates
846
850
  cargo build
847
851
 
848
- # Test all crates
852
+ # Run the full Rust quality pipeline
853
+ cargo fmt --all
854
+ cargo clippy --all-targets --all-features -- -D warnings
849
855
  cargo test
850
856
 
851
857
  # Build specific crate
852
858
  cargo build -p clawmacdo-core
853
859
 
854
- # Run clippy on workspace
855
- cargo clippy --all
856
-
857
860
  # Update dependencies
858
861
  cargo update
859
862
  ```
860
863
 
864
+ The workspace now includes focused Rust tests around config/path validation, deployment database lookups, cron/hook command construction helpers, QR parsing, and web middleware behavior. Add new tests close to the module they protect.
865
+
861
866
  ### Adding Dependencies
862
867
 
863
868
  Add to workspace `Cargo.toml`:
@@ -913,7 +918,7 @@ See [docs/HIGH_SECURITY_FIXES.md](docs/HIGH_SECURITY_FIXES.md) for the finding-b
913
918
  1. Fork the repository
914
919
  2. Create a feature branch
915
920
  3. Add tests for new functionality
916
- 4. Run `cargo clippy` and `cargo test`
921
+ 4. Run `cargo fmt --all`, `cargo clippy --all-targets --all-features -- -D warnings`, and `cargo test`
917
922
  5. Submit a pull request
918
923
 
919
924
  ## License
@@ -951,8 +956,7 @@ See [CHANGELOG.md](CHANGELOG.md) for version history and release notes.
951
956
 
952
957
  ---
953
958
 
954
- **Current version:** 0.69.0
955
-
959
+ **Current version:** 0.70.0
956
960
 
957
961
 
958
962
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "clawmacdo",
3
- "version": "0.69.0",
3
+ "version": "0.70.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.69.0",
34
- "@clawmacdo/linux-x64": "0.69.0",
35
- "@clawmacdo/win32-x64": "0.69.0"
33
+ "@clawmacdo/darwin-arm64": "0.70.0",
34
+ "@clawmacdo/linux-x64": "0.70.0",
35
+ "@clawmacdo/win32-x64": "0.70.0"
36
36
  }
37
37
  }