Skip Menu |

This queue is for tickets about the self CPAN distribution.

Report information
The Basics
Id: 31752
Status: resolved
Worked: 1 min
Priority: 0/
Queue: self

People
Owner: GUGOD [...] cpan.org
Requestors: SREZIC [...] cpan.org
Cc:
AdminCc:

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



Subject: use 5.6.0
The source code of self.pm has the following lines: our $VERSION = '0.13'; use v5.6.0; I think that the order is wrong, if someone uses 5.005, then the "our" would cause a syntax error without any chance to get at the use statement. It's better to swap both lines. Also, note that the v-syntax for versions is not recommended (see the 5.10.0 documentation). Better to write "use 5.006;" Regards, Slaven
You are right. Thanks for point that out. 0.15 will fix this issue.