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