]> git.vpit.fr Git - perl/modules/re-engine-Hooks.git/commitdiff
This is 0.04 v0.04
authorVincent Pit <vince@profvince.com>
Wed, 30 Jan 2013 19:25:47 +0000 (17:25 -0200)
committerVincent Pit <vince@profvince.com>
Wed, 30 Jan 2013 19:25:47 +0000 (17:25 -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 90beea90e3d08dff580de3fb97d269c99efb56b1..7520a8f7d3f20a27463cfea9082a8b10ca27608e 100644 (file)
--- 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.
index 5be009ffabe1e761dc33471c912c238d9e39f7b4..a89d797a4c4a99075c7b27f619aae2320f0610fd 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.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"
 }
index 6e161081cc5e8bf3fa7c92958de13d3935e64da9..f5772946254eb8ef005f9acf044f1359c12ca6c8 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.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 d0545bbc9d505293004dceb83dba11f08a997671..f05cf4e156fc48b51d7a2ca708b7b47d36f88f0f 100644 (file)
--- 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.
index 94096908a9fac73b07d98f43889e88eed57278f8..a7f9a1ce65b7c7081509924f27536870f813fcd1 100644 (file)
@@ -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<Regexp DynaLoader>;
  __PACKAGE__->bootstrap($VERSION);
index de0566466becace0df4de8f9a352c2dbbf629d83..ecffc33fabe55376f6c2d4ed1b12d7c5e6ead622 100644 (file)
@@ -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);