You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Fix regression with small fractional numeric versions (#267)
If a version number is passed in numeric form, C::M::R will use its stringified form for all its processing.
This doesn't play well with small fractional versions like 0.000005, which will be stringified as '5e-06',
and thus rejected as invalid.
EUMM then proceeded misparse the rejected number, so in the above case it became '5'
Also added test-case to vstrings.t
0 commit comments