Skip Menu |

This queue is for tickets about the urpmi CPAN distribution.

Report information
The Basics
Id: 127142
Status: resolved
Priority: 0/
Queue: urpmi

People
Owner: Nobody in particular
Requestors: DBOOK [...] cpan.org
Cc:
AdminCc:

Bug Information
Severity: (no value)
Broken in: (no value)
Fixed in: v8.115



Subject: Version format confusion
Perl has two types of versions: decimal versions (where it is just a floating point number) and dotted integer tuples (a sequence of integers separated by dots). Releases of this distribution appear to be trying to use the latter but when releasing with a version in the format X.YYY it will use the former, sometimes causing it to be interpreted differently. I recommend defining the version with a leading 'v' or appending a third segment of '.0' (preferably both) when you use this form in order to prevent flopping between the formats. our $VERSION = 'v8.114'; our $VERSION = 'v8.114.0'; For details on how the two types are interpreted and converted check out http://blogs.perl.org/users/grinnz/2018/04/a-guide-to-versions-in-perl.html . Thanks.
Ack, I'll do for next releases. Note that versions such as 8.114.x really are test/devel versions though.
Fixed since 8.115
Le Lun 06 Jan 2020 22:08:55, TVIGNAUD a écrit : Show quoted text
> Fixed since 8.115