- Add support for tags
- Warn if defaults are not in exports
+ - Add explicit dependency on Test::More 0.89
0.001004 - 2012-08-09
- fix skipping when Sub::Exporter isn't installed
use ExtUtils::MakeMaker;
(do 'maint/Makefile.PL.include' or die $@) unless -f 'META.yml';
+my $key = eval { ExtUtils::MakeMaker->VERSION(6.56) } ? 'BUILD_REQUIRES' : 'PREREQ_PM' ;
+
WriteMakefile(
NAME => 'Sub-Exporter-Progressive',
VERSION_FROM => 'lib/Sub/Exporter/Progressive.pm',
+ $key => {
+ 'Test::More' => 0.89,
+ }
);