@tritard/waterbrother 0.16.135 → 0.16.136
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/README.md +2 -2
- package/package.json +2 -1
package/README.md
CHANGED
|
@@ -329,10 +329,10 @@ Partners should ship updates by pushing a version tag, not by running `npm publi
|
|
|
329
329
|
2. Bump the package version locally:
|
|
330
330
|
|
|
331
331
|
```bash
|
|
332
|
-
npm version patch
|
|
332
|
+
npm run release:version -- patch
|
|
333
333
|
```
|
|
334
334
|
|
|
335
|
-
Use `minor` or `
|
|
335
|
+
Use `minor`, `major`, or an explicit version like `0.16.136` when appropriate.
|
|
336
336
|
|
|
337
337
|
3. Push `main` and the new tag:
|
|
338
338
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tritard/waterbrother",
|
|
3
|
-
"version": "0.16.
|
|
3
|
+
"version": "0.16.136",
|
|
4
4
|
"description": "Waterbrother: bring-your-own-model coding CLI with local tools, sessions, operator modes, and approval controls",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -19,6 +19,7 @@
|
|
|
19
19
|
"check": "node -e \"import('./src/cli.js')\"",
|
|
20
20
|
"smoke": "node scripts/smoke.js",
|
|
21
21
|
"soak:long-session": "node scripts/long-session-soak.mjs",
|
|
22
|
+
"release:version": "node scripts/release-version.mjs",
|
|
22
23
|
"test": "vitest run",
|
|
23
24
|
"test:watch": "vitest"
|
|
24
25
|
},
|