+0.02 2007-11-25
+
+- Inherit from Exporter, rather than trying to import its
+ import(). Unfortunately, older Exporters as shipped with Perl 5.6.x
+ only allow subclassing.
+
+
0.01 2007-11-24
-* First version, released on an unsuspecting world.
+- First version, released on an unsuspecting world.
use strict;
use warnings;
-our $VERSION = '0.01';
+our $VERSION = '0.02';
our $AUTHORITY = 'cpan:DROLSKY';
our @EXPORT = 'class_has'; ## no critic ProhibitAutomaticExportation
-use Exporter qw( import );
+use base 'Exporter';
use B qw( svref_2object );
use Sub::Name;