From: Ævar Arnfjörð Bjarmason Date: Thu, 27 Dec 2007 21:10:22 +0000 (+0000) Subject: Bump $VERSION to 0.04 X-Git-Tag: v0.04~3 X-Git-Url: http://git.vpit.fr/?p=perl%2Fmodules%2Fre-engine-Plugin.git;a=commitdiff_plain;h=d81c7c9f05735ada95a64682a6a810bf8e0d302b;hp=5082c33697a378822636072363223ba929a9b51f Bump $VERSION to 0.04 Don't use base, set @ISA directly --- diff --git a/Plugin.pm b/Plugin.pm index 062f152..d8fa322 100644 --- a/Plugin.pm +++ b/Plugin.pm @@ -1,11 +1,13 @@ # See Plugin.pod for documentation package re::engine::Plugin; use 5.009005; -use base 'Regexp'; use strict; use XSLoader (); -our $VERSION = '0.03'; +our $VERSION = '0.04'; + +# All engines should subclass the core Regexp package +our @ISA = 'Regexp'; XSLoader::load __PACKAGE__, $VERSION;