super-release 0.8.0 → 0.9.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 +0 -4
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -56,8 +56,6 @@ super-release --show-next-version
56
56
  # Get the next version for a specific package in a monorepo
57
57
  super-release --show-next-version --package @acme/core
58
58
 
59
- # Use 4 threads for commit analysis
60
- super-release -j 4
61
59
  ```
62
60
 
63
61
  ## CLI Reference
@@ -72,7 +70,6 @@ Options:
72
70
  --show-next-version Print the next version and exit
73
71
  -p, --package <PACKAGE> Filter to a specific package (for --show-next-version)
74
72
  -v, --verbose Verbose output
75
- -j, --jobs <JOBS> Parallel jobs for commit analysis [default: 50% of CPUs]
76
73
  -h, --help Print help
77
74
  -V, --version Print version
78
75
  ```
@@ -322,7 +319,6 @@ to a package based on which files it changed.
322
319
 
323
320
  ## Performance
324
321
 
325
- - **Parallel diff computation**: commit diffs computed across multiple threads
326
322
  - **Tag-bounded history walk**: only walks commits since the oldest package tag
327
323
  - **Single-pass commit collection**: commits fetched once, partitioned per package
328
324
  - **Reachable-only tags**: single revwalk to check tag reachability, stops early
package/package.json CHANGED
@@ -28,7 +28,7 @@
28
28
  "url": "git+https://github.com/BowlingX/super-release.git"
29
29
  },
30
30
  "type": "module",
31
- "version": "0.8.0",
31
+ "version": "0.9.0",
32
32
  "scripts": {
33
33
  "super-release": "node npm/bin/super-release.js"
34
34
  }