Subject: | use_strict metric does not recognize `use v5.14` syntax |
Checking a release tarball with cpants_lint.pl, I found that Module::CPANTS::Analyse 0.92 (and 0.93_04) fail the use_strict metric when the modules require perl 5.14 with the v syntax:
```
use v5.14;
```
but succeed when using the decimal syntax:
```
use 5.014;
```
I've avoided the problem by changing[1] `use` syntaxes, but would prefer to see this fixed upstream. I tried to discover if the problem was in Module::CPANTS::Kwalitee::Uses or some other piece of code (perhaps Module::ExtractUse), but couldn't easily discover the exact location of the issue.
[1] https://github.com/kasei/attean/commit/87a866eca1a4b8f38eeab6d379ded9c20b62177a#diff-5c6f545fac1ad72ab9d2b240f18541faL29