From: Vincent Pit Date: Wed, 30 Jan 2013 19:25:47 +0000 (-0200) Subject: This is 0.04 X-Git-Tag: v0.04^0 X-Git-Url: http://git.vpit.fr/?p=perl%2Fmodules%2Fre-engine-Hooks.git;a=commitdiff_plain;h=8f657e98a7fe5e93f5c7ec58c77e4793ab82bc8a This is 0.04 --- diff --git a/Changes b/Changes index 90beea9..7520a8f 100644 --- a/Changes +++ b/Changes @@ -1,5 +1,10 @@ Revision history for re-engine-Hooks +0.04 2013-01-30 19:30 UTC + + Tst : t/93-pod-spelling.t does not crash anymore on perl 5.12 and + below. + + Upd : Support for perl 5.12.5, 5.14.3, 5.16.2 and 5.17.[5678]. + 0.03 2012-09-24 11:10 UTC + Doc : reh_exec_hook() has been correctly renamed to reh_exec_node_hook() in the documentation. diff --git a/META.json b/META.json index 5be009f..a89d797 100644 --- a/META.json +++ b/META.json @@ -4,7 +4,7 @@ "Vincent Pit " ], "dynamic_config" : 1, - "generated_by" : "ExtUtils::MakeMaker version 6.6302, CPAN::Meta::Converter version 2.120921", + "generated_by" : "ExtUtils::MakeMaker version 6.64, CPAN::Meta::Converter version 2.120921", "license" : [ "perl_5" ], @@ -60,5 +60,5 @@ "url" : "http://git.profvince.com/?p=perl%2Fmodules%2Fre-engine-Hooks.git" } }, - "version" : "0.03" + "version" : "0.04" } diff --git a/META.yml b/META.yml index 6e16108..f577294 100644 --- a/META.yml +++ b/META.yml @@ -16,7 +16,7 @@ configure_requires: ExtUtils::MakeMaker: 0 File::Spec: 0 dynamic_config: 1 -generated_by: 'ExtUtils::MakeMaker version 6.6302, CPAN::Meta::Converter version 2.120921' +generated_by: 'ExtUtils::MakeMaker version 6.64, CPAN::Meta::Converter version 2.120921' license: perl meta-spec: url: http://module-build.sourceforge.net/META-spec-v1.4.html @@ -35,4 +35,4 @@ resources: homepage: http://search.cpan.org/dist/re-engine-Hooks/ license: http://dev.perl.org/licenses/ repository: http://git.profvince.com/?p=perl%2Fmodules%2Fre-engine-Hooks.git -version: 0.03 +version: 0.04 diff --git a/README b/README index d0545bb..f05cf4e 100644 --- a/README +++ b/README @@ -3,7 +3,7 @@ NAME engine. VERSION - Version 0.03 + Version 0.04 SYNOPSIS In your XS file : @@ -153,7 +153,7 @@ SUPPORT perldoc re::engine::Hooks COPYRIGHT & LICENSE - Copyright 2012 Vincent Pit, all rights reserved. + Copyright 2012,2013 Vincent Pit, all rights reserved. This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself. diff --git a/lib/re/engine/Hooks.pm b/lib/re/engine/Hooks.pm index 9409690..a7f9a1c 100644 --- a/lib/re/engine/Hooks.pm +++ b/lib/re/engine/Hooks.pm @@ -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); diff --git a/t/re-engine-Hooks-TestDist/lib/re/engine/Hooks/TestDist.pm b/t/re-engine-Hooks-TestDist/lib/re/engine/Hooks/TestDist.pm index de05664..ecffc33 100644 --- a/t/re-engine-Hooks-TestDist/lib/re/engine/Hooks/TestDist.pm +++ b/t/re-engine-Hooks-TestDist/lib/re/engine/Hooks/TestDist.pm @@ -10,7 +10,7 @@ our ($VERSION, @ISA); use re::engine::Hooks; BEGIN { - $VERSION = '0.03'; + $VERSION = '0.04'; require DynaLoader; push @ISA, 'DynaLoader'; __PACKAGE__->bootstrap($VERSION);