Skip to content

Commit 03d4c2e

Browse files
committed
fix: --minor-version-only option no longer requires --latest-patch option
1 parent e466509 commit 03d4c2e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/cli.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ new Command()
8282
: SearchMode.Archived;
8383

8484
// Group mode.
85-
const groupMode = options.latestPatch
85+
const groupMode = (options.latestPatch || options.minorVersionOnly)
8686
? GroupMode.LatestPatch
8787
: options.oldestPatch
8888
? GroupMode.OldestPatch

0 commit comments

Comments
 (0)