CC: | HERMES [...] cpan.org |
Subject: | VERSION check missing |
Hi Toby,
In modules using Exporter, ensuring a particular version is easy:
$ perl -MDBI=1.630 -e1
$ perl -MDBI=99 -e1
DBI version 99 required--this is only version 1.636 at /Users/sno/perl5/perlbrew/perls/perl-5.24.1/lib/5.24.1/Exporter/Heavy.pm line 125.
But Exporter::Tiny doesn't recognize this as a version approval (which is very common in Perl world):
$ perl -MList::MoreUtils=99 -e1
Would you consider this as a missing feature or (since it should be a drop-in replacement for Exporter) as a design bug?
Cheers,
Jens