From: Vincent Pit Date: Sat, 24 Aug 2013 19:48:57 +0000 (-0300) Subject: This is 0.05 X-Git-Tag: v0.05^0 X-Git-Url: http://git.vpit.fr/?p=perl%2Fmodules%2Fre-engine-Hooks.git;a=commitdiff_plain;h=5f4fe0b63e7d03e713a655997310a3875c40b7a8 This is 0.05 --- diff --git a/Changes b/Changes index 7520a8f..b8a2341 100644 --- a/Changes +++ b/Changes @@ -1,5 +1,18 @@ Revision history for re-engine-Hooks +0.05 2013-08-24 19:50 UTC + This is a maintenance release. The code contains no functional change. + Satisfied users of version 0.04 can skip this update. + + Dep : Development releases of perls from the branches 5.11, 5.13, + 5.15 and 5.17 are no longer supported. Support for the branch + 5.19 will be removed as soon as the branch 5.21 is available. + All stable releases of perl since 5.10.1 are still supported. + + Doc : C++ compilers are officially NOT supported. + + Doc : POD headings are now properly linkable. + + Tst : Author tests are no longer bundled with this distribution. + They are only made available to authors in the git repository. + + Upd : Support for perl 5.14.4, 5.16.3, 5.18.[01] and 5.19.[0123]. + 0.04 2013-01-30 19:30 UTC + Tst : t/93-pod-spelling.t does not crash anymore on perl 5.12 and below. diff --git a/META.json b/META.json index a89d797..64b4064 100644 --- a/META.json +++ b/META.json @@ -4,7 +4,7 @@ "Vincent Pit " ], "dynamic_config" : 1, - "generated_by" : "ExtUtils::MakeMaker version 6.64, CPAN::Meta::Converter version 2.120921", + "generated_by" : "ExtUtils::MakeMaker version 6.72, CPAN::Meta::Converter version 2.132140", "license" : [ "perl_5" ], @@ -50,7 +50,7 @@ "release_status" : "stable", "resources" : { "bugtracker" : { - "web" : "http://rt.cpan.org/NoAuth/ReportBug.html?Queue=re-engine-Hooks" + "web" : "http://rt.cpan.org/Dist/Display.html?Name=re-engine-Hooks" }, "homepage" : "http://search.cpan.org/dist/re-engine-Hooks/", "license" : [ @@ -60,5 +60,5 @@ "url" : "http://git.profvince.com/?p=perl%2Fmodules%2Fre-engine-Hooks.git" } }, - "version" : "0.04" + "version" : "0.05" } diff --git a/META.yml b/META.yml index f577294..383ae90 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.64, CPAN::Meta::Converter version 2.120921' +generated_by: 'ExtUtils::MakeMaker version 6.72, CPAN::Meta::Converter version 2.132140' license: perl meta-spec: url: http://module-build.sourceforge.net/META-spec-v1.4.html @@ -31,8 +31,8 @@ requires: DynaLoader: 0 perl: 5.010001 resources: - bugtracker: http://rt.cpan.org/NoAuth/ReportBug.html?Queue=re-engine-Hooks + bugtracker: http://rt.cpan.org/Dist/Display.html?Name=re-engine-Hooks 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.04 +version: 0.05 diff --git a/README b/README index f05cf4e..c708a09 100644 --- a/README +++ b/README @@ -3,7 +3,7 @@ NAME engine. VERSION - Version 0.04 + Version 0.05 SYNOPSIS In your XS file : @@ -128,7 +128,11 @@ EXAMPLES distribution. It implements a couple of simple examples. DEPENDENCIES - perl 5.10.1. + Any stable release of perl since 5.10.1, or a development release of + perl from the 5.19 branch. + + 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. ExtUtils::Depends. diff --git a/lib/re/engine/Hooks.pm b/lib/re/engine/Hooks.pm index 2f07ac7..365df47 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.04 +Version 0.05 =cut @@ -20,7 +20,7 @@ our ($VERSION, @ISA); sub dl_load_flags { 0x01 } BEGIN { - $VERSION = '0.04'; + $VERSION = '0.05'; 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 1b42ad7..8932577 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.04'; + $VERSION = '0.05'; require DynaLoader; push @ISA, 'DynaLoader'; __PACKAGE__->bootstrap($VERSION);