From: Marius Gavrilescu Date: Sat, 11 Nov 2017 21:40:33 +0000 (+0000) Subject: CPANTS compliance + Bump version and update Changes X-Git-Tag: 0.003002^0 X-Git-Url: http://git.ieval.ro/?p=acme-evil.git;a=commitdiff_plain CPANTS compliance + Bump version and update Changes --- diff --git a/Changes b/Changes index 02cd578..64e1c14 100644 --- a/Changes +++ b/Changes @@ -1,5 +1,8 @@ Revision history for Perl extension Acme::Evil. +0.003002 2017-11-11T21:40+00:00 + - Make dist CPANTS compliant + 0.003001 2017-04-15T00:15+03:00 - Bump MIN_PERL_VERSION to 5.10.1 - Fix tests when @INC has no '.' (RT #121030) diff --git a/MANIFEST b/MANIFEST index eb07351..d83daf2 100644 --- a/MANIFEST +++ b/MANIFEST @@ -1,4 +1,5 @@ Changes +lib/Acme/Evil.pm lib/evil.pm Makefile.PL MANIFEST diff --git a/README b/README index 07dcd10..b96ac60 100644 --- a/README +++ b/README @@ -1,4 +1,4 @@ -Acme-Evil version 0.003001 +Acme-Evil version 0.003002 ========================== RFC3514 introduces a new flag called the "evil bit" in all IP packets. diff --git a/lib/Acme/Evil.pm b/lib/Acme/Evil.pm new file mode 100644 index 0000000..dcf71be --- /dev/null +++ b/lib/Acme/Evil.pm @@ -0,0 +1,46 @@ +package Acme::Evil; + +use 5.010001; +use strict; +use warnings; + +our $VERSION = 0.003002; + +1; +__END__ + +=encoding utf-8 + +=head1 NAME + +Acme::Evil - Empty module + +=head1 SYNOPSIS + + use Acme::Evil; # does nothing + +=head1 DESCRIPTION + +This is an empty module needed for CPANTS Kwalitee compliance. + +See the documentation of the L pragma for useful informaton +about this dist. + +=head1 SEE ALSO + +L + +=head1 AUTHOR + +Marius Gavrilescu, Emarius@ieval.roE + +=head1 COPYRIGHT AND LICENSE + +Copyright (C) 2016 by Marius Gavrilescu + +This library is free software; you can redistribute it and/or modify +it under the same terms as Perl itself, either Perl version 5.22.2 or, +at your option, any later version of Perl 5 you may have available. + + +=cut diff --git a/lib/evil.pm b/lib/evil.pm index 54f2dd8..adee0e5 100644 --- a/lib/evil.pm +++ b/lib/evil.pm @@ -10,7 +10,7 @@ use Carp; my $INTERMEDIATE = __PACKAGE__.'/intermediate'; my $LAX = __PACKAGE__.'/lax'; -our $VERSION = 0.003001; +our $VERSION = 0.003002; our %tainted; our %wants_strict;