From: Vincent Pit Date: Mon, 21 Dec 2015 16:20:27 +0000 (+0100) Subject: This is 0.12 X-Git-Tag: v0.12^0 X-Git-Url: http://git.vpit.fr/?p=perl%2Fmodules%2Fre-engine-Plugin.git;a=commitdiff_plain;h=bfefb8655bd69b7187debf82a595fd43b81023e6 This is 0.12 --- diff --git a/Changes b/Changes index 887b767..c0b0e64 100644 --- a/Changes +++ b/Changes @@ -1,3 +1,7 @@ +0.12 2015-12-21 16:20 UTC - Vincent Pit + + Upd : The internal XS helpers headers were updated to help uncover + some possible future memory-related errors. + 0.11 2015-11-05 01:00 UTC - Vincent Pit + Add : It is now possible to specify a re::engine::Plugin object destructor by passing the 'free' option either to diff --git a/META.json b/META.json index 814e173..fcaa52b 100644 --- a/META.json +++ b/META.json @@ -23,13 +23,16 @@ "prereqs" : { "build" : { "requires" : { + "Config" : "0", "ExtUtils::MakeMaker" : "0", "Test::More" : "0", - "XSLoader" : "0" + "XSLoader" : "0", + "lib" : "0" } }, "configure" : { "requires" : { + "Config" : "0", "ExtUtils::MakeMaker" : "0" } }, @@ -53,6 +56,6 @@ "url" : "http://git.profvince.com/?p=perl%2Fmodules%2Fre-engine-Plugin.git" } }, - "version" : "0.11", + "version" : "0.12", "x_serialization_backend" : "JSON::PP version 2.27300" } diff --git a/META.yml b/META.yml index c853e8d..fc1d023 100644 --- a/META.yml +++ b/META.yml @@ -4,10 +4,13 @@ author: - 'Ævar Arnfjörð Bjarmason ' - 'Vincent Pit ' build_requires: + Config: '0' ExtUtils::MakeMaker: '0' Test::More: '0' XSLoader: '0' + lib: '0' configure_requires: + Config: '0' ExtUtils::MakeMaker: '0' dynamic_config: 1 generated_by: 'ExtUtils::MakeMaker version 7.1, CPAN::Meta::Converter version 2.150005' @@ -28,5 +31,5 @@ resources: homepage: http://search.cpan.org/dist/re-engine-Plugin/ license: http://dev.perl.org/licenses/ repository: http://git.profvince.com/?p=perl%2Fmodules%2Fre-engine-Plugin.git -version: '0.11' -x_serialization_backend: 'CPAN::Meta::YAML version 0.016' +version: '0.12' +x_serialization_backend: 'CPAN::Meta::YAML version 0.018' diff --git a/Plugin.pm b/Plugin.pm index cc6d6e7..eee5dad 100644 --- a/Plugin.pm +++ b/Plugin.pm @@ -6,7 +6,7 @@ use strict; our ($VERSION, @ISA); BEGIN { - $VERSION = '0.11'; + $VERSION = '0.12'; # All engines should subclass the core Regexp package @ISA = 'Regexp'; require XSLoader; diff --git a/Plugin.pod b/Plugin.pod index 04189d2..98633c4 100644 --- a/Plugin.pod +++ b/Plugin.pod @@ -4,7 +4,7 @@ re::engine::Plugin - API to write custom regex engines =head1 VERSION -Version 0.11 +Version 0.12 =head1 DESCRIPTION diff --git a/README b/README index 3f98e99..c885526 100644 --- a/README +++ b/README @@ -2,7 +2,7 @@ NAME re::engine::Plugin - API to write custom regex engines VERSION - Version 0.11 + Version 0.12 DESCRIPTION As of perl 5.9.5 it's possible to lexically replace perl's built-in