From: Marius Gavrilescu Date: Fri, 14 Apr 2017 21:15:16 +0000 (+0300) Subject: Bump version and update Changes X-Git-Tag: 0.003001^0 X-Git-Url: http://git.ieval.ro/?p=acme-evil.git;a=commitdiff_plain;h=d312a6e47f2044288cd62b9c4ed02f98435ab2ae Bump version and update Changes --- diff --git a/Changes b/Changes index 8b8a5a1..02cd578 100644 --- a/Changes +++ b/Changes @@ -1,6 +1,10 @@ Revision history for Perl extension Acme::Evil. -0.003 2017-04-01:20:04+03:00 +0.003001 2017-04-15T00:15+03:00 + - Bump MIN_PERL_VERSION to 5.10.1 + - Fix tests when @INC has no '.' (RT #121030) + +0.003 2017-04-01T20:04+03:00 - Implement :lax and :intermediate modes - Write more tests (test coverage now 100%) - Document caveats and known bugs. diff --git a/README b/README index 5d92917..07dcd10 100644 --- a/README +++ b/README @@ -1,5 +1,5 @@ -Acme-Evil version 0.003 -======================= +Acme-Evil version 0.003001 +========================== RFC3514 introduces a new flag called the "evil bit" in all IP packets. The intention is to simplify the work of firewalls. Software that @@ -31,5 +31,3 @@ Copyright (C) 2016-2017 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. - - diff --git a/lib/evil.pm b/lib/evil.pm index 449b6c1..54f2dd8 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.003; +our $VERSION = 0.003001; our %tainted; our %wants_strict;