bump version to 1.2.0 since we're adding author checks
[p5sagit/strictures.git] / Makefile.PL
CommitLineData
eae006ee 1use strict;
2use warnings FATAL => 'all';
394c3a46 3use ExtUtils::MakeMaker;
4
eae006ee 5(do 'maint/Makefile.PL.include' or die $@) unless -f 'META.yml';
6
394c3a46 7WriteMakefile(
8 NAME => 'strictures',
9 VERSION_FROM => 'lib/strictures.pm',
10 ABSTRACT_FROM => 'lib/strictures.pm',
eae006ee 11 AUTHOR => 'Matt S Trout <mst@shadowcat.co.uk>',
394c3a46 12 LICENSE => 'perl',
13);