@wipcomputer/wip-release 1.2.2 → 1.2.4

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/CHANGELOG.md +10 -0
  2. package/SKILL.md +2 -2
  3. package/package.json +3 -3
package/CHANGELOG.md CHANGED
@@ -4,6 +4,16 @@
4
4
 
5
5
 
6
6
 
7
+
8
+
9
+ ## 1.2.4 (2026-02-21)
10
+
11
+ Align description across all sources
12
+
13
+ ## 1.2.3 (2026-02-21)
14
+
15
+ Fix npm bin entry: remove ./ prefix so npx wip-release works globally
16
+
7
17
  ## 1.2.2 (2026-02-21)
8
18
 
9
19
  Fix ClawHub display name and slug detection. Harden command injection fix.
package/SKILL.md CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  name: WIP.release
3
- version: 1.2.2
4
- description: Local release tool. Bumps version, updates changelog + SKILL.md, publishes to npm + GitHub.
3
+ version: 1.2.4
4
+ description: One-command release pipeline. Bumps version, updates changelog + SKILL.md, publishes to npm + GitHub.
5
5
  homepage: https://github.com/wipcomputer/wip-release
6
6
  metadata:
7
7
  category: dev-tools
package/package.json CHANGED
@@ -1,11 +1,11 @@
1
1
  {
2
2
  "name": "@wipcomputer/wip-release",
3
- "version": "1.2.2",
3
+ "version": "1.2.4",
4
4
  "type": "module",
5
- "description": "Local release tool. Bumps version, updates changelog + SKILL.md, publishes to npm + GitHub.",
5
+ "description": "One-command release pipeline. Bumps version, updates changelog + SKILL.md, publishes to npm + GitHub.",
6
6
  "main": "core.mjs",
7
7
  "bin": {
8
- "wip-release": "./cli.js"
8
+ "wip-release": "cli.js"
9
9
  },
10
10
  "exports": {
11
11
  ".": "./core.mjs",