From: Vincent Pit Date: Mon, 24 Sep 2012 11:10:52 +0000 (+0200) Subject: This is 0.03 X-Git-Tag: v0.03^0 X-Git-Url: http://git.vpit.fr/?p=perl%2Fmodules%2Fre-engine-Hooks.git;a=commitdiff_plain;h=39b89ebc30220f347fb9ed7977395889e2bb37ad This is 0.03 --- diff --git a/Changes b/Changes index 99668af..90beea9 100644 --- a/Changes +++ b/Changes @@ -1,5 +1,11 @@ Revision history for re-engine-Hooks +0.03 2012-09-24 11:10 UTC + + Doc : reh_exec_hook() has been correctly renamed to + reh_exec_node_hook() in the documentation. + + Fix : The module now links correctly on Windows. + + Upd : Support for perl 5.16.[01] and 5.17.[01234] has been added. + 0.02 2012-02-31 15:50 UTC + Chg : INCOMPATIBLE CHANGE : Arguments are now passed to reh_register() through a configuration structure. diff --git a/META.json b/META.json index 962b407..5be009f 100644 --- a/META.json +++ b/META.json @@ -4,7 +4,7 @@ "Vincent Pit " ], "dynamic_config" : 1, - "generated_by" : "ExtUtils::MakeMaker version 6.62, CPAN::Meta::Converter version 2.120630", + "generated_by" : "ExtUtils::MakeMaker version 6.6302, 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.02" + "version" : "0.03" } diff --git a/META.yml b/META.yml index 1b256aa..6e16108 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.62, CPAN::Meta::Converter version 2.120630' +generated_by: 'ExtUtils::MakeMaker version 6.6302, 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.02 +version: 0.03 diff --git a/README b/README index 812b41d..d0545bb 100644 --- a/README +++ b/README @@ -3,7 +3,7 @@ NAME engine. VERSION - Version 0.02 + Version 0.03 SYNOPSIS In your XS file : @@ -14,8 +14,8 @@ SYNOPSIS ... } - STATIC void dri_exec_hook(pTHX_ regexp *rx, regnode *node, - regmatch_info *info, regmatch_state *state) { + STATIC void dri_exec_node_hook(pTHX_ + regexp *rx, regnode *node, regmatch_info *info, regmatch_state *state) { ... } @@ -41,7 +41,7 @@ SYNOPSIS use re::engine::Hooks; # Before loading our own shared library BEGIN { - $VERSION = '0.02'; + $VERSION = '0.01'; require DynaLoader; push @ISA, 'DynaLoader'; __PACKAGE__->bootstrap($VERSION); @@ -80,7 +80,7 @@ C API typedef void (*reh_comp_node_hook)(pTHX_ regexp *, regnode *); - "reh_exec_hook" + "reh_exec_node_hook" The typedef for the regexp node_execution phase hook. Currently evaluates to : diff --git a/lib/re/engine/Hooks.pm b/lib/re/engine/Hooks.pm index 7990d9d..bbeb53c 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.02 +Version 0.03 =cut @@ -20,7 +20,7 @@ our ($VERSION, @ISA); sub dl_load_flags { 0x01 } BEGIN { - $VERSION = '0.02'; + $VERSION = '0.03'; 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 05747ff..de05664 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.02'; + $VERSION = '0.03'; require DynaLoader; push @ISA, 'DynaLoader'; __PACKAGE__->bootstrap($VERSION);