Skip Menu |

This queue is for tickets about the Math-Transform-List CPAN distribution.

Report information
The Basics
Id: 122891
Status: resolved
Priority: 0/
Queue: Math-Transform-List

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

Bug Information
Severity: (no value)
Broken in: (no value)
Fixed in: (no value)



Subject: Version declared as float
Versions should always be declared as strings, so they are identically represented and parsed everywhere. This avoids issues like the latest release, which contains "our $VERSION = 20170822.1;" but results in the version '20170822.100000001', most likely due to a floating point error. To fix this change the declaration to "our $VERSION = '20170822.1';" (or the appropriate version bump, of course)
Thanks for the helpful note!