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)