X-Git-Url: http://git.vpit.fr/?a=blobdiff_plain;f=lib%2Fre%2Fengine%2FHooks.pm;h=2f07ac798608210e703c51ecb630f0e45d643709;hb=4fed3fb749dc39acd325575d5efc0bfde0bcc101;hp=94096908a9fac73b07d98f43889e88eed57278f8;hpb=00a9a10242c70104f4964a5955ce381f37e57efc;p=perl%2Fmodules%2Fre-engine-Hooks.git diff --git a/lib/re/engine/Hooks.pm b/lib/re/engine/Hooks.pm index 9409690..2f07ac7 100644 --- a/lib/re/engine/Hooks.pm +++ b/lib/re/engine/Hooks.pm @@ -1,6 +1,6 @@ package re::engine::Hooks; -use 5.010001; +use 5.010_001; use strict; use warnings; @@ -11,7 +11,7 @@ re::engine::Hooks - Hookable variant of the Perl core regular expression engine. =head1 VERSION -Version 0.03 +Version 0.04 =cut @@ -20,7 +20,7 @@ our ($VERSION, @ISA); sub dl_load_flags { 0x01 } BEGIN { - $VERSION = '0.03'; + $VERSION = '0.04'; require DynaLoader; push @ISA, qw; __PACKAGE__->bootstrap($VERSION); @@ -210,7 +210,10 @@ It implements a couple of simple examples. =head1 DEPENDENCIES -L 5.10.1. +Any stable release of L since 5.10.1, or a development release of L from the 5.19 branch. + +A C compiler. +This module may happen to build with a C++ compiler as well, but don't rely on it, as no guarantee is made in this regard. L.