Skip to content

Commit

Permalink
Fix issue with includeRC
Browse files Browse the repository at this point in the history
  • Loading branch information
puntope committed Apr 22, 2024
1 parent ce5e87d commit 8db7d34
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ function parsePluginVersions( releases = {} ) {
version !== 'trunk' &&
version !== 'other' &&
! version.includes( 'beta' ) &&
( includeRC || semverCompare( latest, version ) <= 0 )
( isRC( version ) || semverCompare( latest, version ) <= 0 )
)
.sort( semverCompare );

Expand Down

0 comments on commit 8db7d34

Please sign in to comment.