aigo 1.1.0 → 1.1.1
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.
- package/Makefile +5 -1
- package/README.md +3 -2
- package/package.json +1 -1
package/Makefile
CHANGED
package/README.md
CHANGED
|
@@ -523,10 +523,11 @@ npx nodemon bin/aigo.js claude
|
|
|
523
523
|
Bump the minor version and publish to npm:
|
|
524
524
|
|
|
525
525
|
```bash
|
|
526
|
-
make publish-minor
|
|
526
|
+
make publish-minor # bump minor (e.g. 1.0.1 → 1.1.0), then publish
|
|
527
|
+
make publish-patch # bump patch (e.g. 1.0.1 → 1.0.2), then publish
|
|
527
528
|
```
|
|
528
529
|
|
|
529
|
-
|
|
530
|
+
Each runs `npm version minor` or `npm version patch` (updates `package.json` and creates a git commit/tag) then `npm publish`.
|
|
530
531
|
|
|
531
532
|
## License
|
|
532
533
|
|