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.
Files changed (3) hide show
  1. package/Makefile +5 -1
  2. package/README.md +3 -2
  3. package/package.json +1 -1
package/Makefile CHANGED
@@ -1,4 +1,8 @@
1
- .PHONY: publish-minor
1
+ .PHONY: publish-minor publish-patch
2
2
  publish-minor:
3
3
  npm version minor
4
4
  npm publish
5
+
6
+ publish-patch:
7
+ npm version patch
8
+ npm publish
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
- This runs `npm version minor` (updates `package.json` and creates a git commit/tag) then `npm publish`.
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
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "aigo",
3
- "version": "1.1.0",
3
+ "version": "1.1.1",
4
4
  "description": "Stream Claude Code to the web - run Claude remotely from any device",
5
5
  "type": "module",
6
6
  "bin": {