Skip to content

Commit 0b440d5

Browse files
committed
[LOCAL] we have patch versions after the .0
1 parent 785bc8d commit 0b440d5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scripts/version-utils.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ function isStablePrerelease(version) {
135135
return (
136136
version.major === '0' &&
137137
version.minor !== '0' &&
138-
version.patch === '0' &&
138+
version.patch.match(/^\d+$/) &&
139139
version.prerelease != null &&
140140
(version.prerelease.startsWith('rc.') ||
141141
version.prerelease.startsWith('rc-') ||

0 commit comments

Comments
 (0)