]> git.vpit.fr Git - perl/modules/re-engine-Hooks.git/commitdiff
This is 0.03 v0.03
authorVincent Pit <vince@profvince.com>
Mon, 24 Sep 2012 11:10:52 +0000 (13:10 +0200)
committerVincent Pit <vince@profvince.com>
Mon, 24 Sep 2012 11:10:52 +0000 (13:10 +0200)
Changes
META.json
META.yml
README
lib/re/engine/Hooks.pm
t/re-engine-Hooks-TestDist/lib/re/engine/Hooks/TestDist.pm

diff --git a/Changes b/Changes
index 99668af101d80e64b40753696bf6eb6f65cd6060..90beea90e3d08dff580de3fb97d269c99efb56b1 100644 (file)
--- 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.
index 962b407c18a8294fb7d77b4bae5dcef6bd5e9c4c..5be009ffabe1e761dc33471c912c238d9e39f7b4 100644 (file)
--- a/META.json
+++ b/META.json
@@ -4,7 +4,7 @@
       "Vincent Pit <perl@profvince.com>"
    ],
    "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"
 }
index 1b256aa9b821ad7409b500ad0a0c965cff257849..6e161081cc5e8bf3fa7c92958de13d3935e64da9 100644 (file)
--- 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 812b41dfa25c92584927b2f8919a3f05af291c3f..d0545bbc9d505293004dceb83dba11f08a997671 100644 (file)
--- 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 :
 
index 7990d9d50c6582d4ee54732f7f13553788654d6a..bbeb53c4cae40ae2b72d539fdc992e77762f6579 100644 (file)
@@ -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<Regexp DynaLoader>;
  __PACKAGE__->bootstrap($VERSION);
index 05747ff4f5e08ee065e54d2a4bab7d1bc419a2f4..de0566466becace0df4de8f9a352c2dbbf629d83 100644 (file)
@@ -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);