+0.10 2014-10-01 23:55 UTC - Vincent Pit
+ + Fix : [RT #92118] : Testing failed with Perl 5.17.5+
+ The tests have been taught about perls newer than 5.18.0.
+ Thanks Tokuhiro Matsuno for reporting.
+ + Fix : The module should no longer cause segfaults when an END block
+ executed at the end of a pseudo-fork compiles some code with
+ eval STRING.
+ + Fix : Miscellaneous compiler warnings with newer perls have been
+ silenced.
+ + Tst : Author tests are no longer bundled with this distribution.
+ They are only made available to authors in the git repository.
+ + Upd : Package metadata overhaul.
+
0.09 2011-04-05 16:05 UTC - Vincent Pit
+ Add : The constants REP_THREADSAFE and REP_FORKSAFE tell you whenever
the pragma is thread-safe and fork-safe.
Changes
MANIFEST
MANIFEST.SKIP
+META.json
META.yml
Makefile.PL
Plugin.pm
--- /dev/null
+{
+ "abstract" : "API to write custom regex engines",
+ "author" : [
+ "Vincent Pit <perl@profvince.com>"
+ ],
+ "dynamic_config" : 1,
+ "generated_by" : "ExtUtils::MakeMaker version 6.98, CPAN::Meta::Converter version 2.142690",
+ "license" : [
+ "perl_5"
+ ],
+ "meta-spec" : {
+ "url" : "http://search.cpan.org/perldoc?CPAN::Meta::Spec",
+ "version" : "2"
+ },
+ "name" : "re-engine-Plugin",
+ "no_index" : {
+ "directory" : [
+ "t",
+ "inc"
+ ]
+ },
+ "prereqs" : {
+ "build" : {
+ "requires" : {
+ "ExtUtils::MakeMaker" : "0",
+ "Test::More" : "0",
+ "XSLoader" : "0"
+ }
+ },
+ "configure" : {
+ "requires" : {
+ "ExtUtils::MakeMaker" : "0"
+ }
+ },
+ "runtime" : {
+ "requires" : {
+ "XSLoader" : "0",
+ "perl" : "5.010"
+ }
+ }
+ },
+ "release_status" : "stable",
+ "resources" : {
+ "bugtracker" : {
+ "web" : "http://rt.cpan.org/Dist/Display.html?Name=re-engine-Plugin"
+ },
+ "homepage" : "http://search.cpan.org/dist/re-engine-Plugin/",
+ "license" : [
+ "http://dev.perl.org/licenses/"
+ ],
+ "repository" : {
+ "url" : "http://git.profvince.com/?p=perl%2Fmodules%2Fre-engine-Plugin.git"
+ }
+ },
+ "version" : "0.10"
+}
---- #YAML:1.0
-name: re-engine-Plugin
-version: 0.09
-abstract: API to write custom regex engines
+---
+abstract: 'API to write custom regex engines'
author:
- - Vincent Pit <perl@profvince.com>
-license: perl
-distribution_type: module
-configure_requires:
- ExtUtils::MakeMaker: 0
+ - 'Vincent Pit <perl@profvince.com>'
build_requires:
- ExtUtils::MakeMaker: 0
- Test::More: 0
- XSLoader: 0
+ ExtUtils::MakeMaker: '0'
+ Test::More: '0'
+ XSLoader: '0'
+configure_requires:
+ ExtUtils::MakeMaker: '0'
+dynamic_config: 1
+generated_by: 'ExtUtils::MakeMaker version 6.98, CPAN::Meta::Converter version 2.142690'
+license: perl
+meta-spec:
+ url: http://module-build.sourceforge.net/META-spec-v1.4.html
+ version: '1.4'
+name: re-engine-Plugin
+no_index:
+ directory:
+ - t
+ - inc
requires:
- perl: 5.01
- XSLoader: 0
+ XSLoader: '0'
+ perl: '5.010'
resources:
- bugtracker: http://rt.cpan.org/NoAuth/ReportBug.html?Queue=re-engine-Plugin
- 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
-no_index:
- directory:
- - t
- - inc
-generated_by: ExtUtils::MakeMaker version 6.56
-meta-spec:
- url: http://module-build.sourceforge.net/META-spec-v1.4.html
- version: 1.4
-dynamic_config: 0
+ bugtracker: http://rt.cpan.org/Dist/Display.html?Name=re-engine-Plugin
+ 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.10'
our ($VERSION, @ISA);
BEGIN {
- $VERSION = '0.09';
+ $VERSION = '0.10';
# All engines should subclass the core Regexp package
@ISA = 'Regexp';
require XSLoader;
=head1 VERSION
-Version 0.09
+Version 0.10
=head1 DESCRIPTION
re::engine::Plugin - API to write custom regex engines
VERSION
- Version 0.09
+ Version 0.10
DESCRIPTION
As of perl 5.9.5 it's possible to lexically replace perl's built-in
A C compiler. This module may happen to build with a C++ compiler as
well, but don't rely on it, as no guarantee is made in this regard.
- XSLoader (standard since perl 5.006).
+ XSLoader (standard since perl 5.6.0).
BUGS
Please report any bugs that aren't already listed at
<http://rt.cpan.org/Public/Bug/Report.html?Queue=re-engine-Plugin>
AUTHORS
- Ævar Arnfjörð Bjarmason "<avar at cpan.org>"
+ Ævar Arnfjörð Bjarmason "<avar at cpan.org>"
Vincent Pit "<perl at profvince.com>"
LICENSE
- Copyright 2007,2008 Ævar Arnfjörð Bjarmason.
+ Copyright 2007,2008 Ævar Arnfjörð Bjarmason.
- Copyright 2009,2010,2011 Vincent Pit.
+ Copyright 2009,2010,2011,2013,2014 Vincent Pit.
This program is free software; you can redistribute it and/or modify it
under the same terms as Perl itself.