aboutsummaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
Diffstat (limited to 'lib')
-rw-r--r--lib/List/Filters.pm12
1 files changed, 6 insertions, 6 deletions
diff --git a/lib/List/Filters.pm b/lib/List/Filters.pm
index 41e88ff..73dcd45 100644
--- a/lib/List/Filters.pm
+++ b/lib/List/Filters.pm
@@ -10,14 +10,14 @@ use 5.006;
# Import required modules
use Carp;
-use Exporter 'import';
-# Specify package version
-our $VERSION = 0.02;
-
-# Specify functions available for export
+# Handle exporting in a way Perl v5.6 should tolerate
+use base qw(Exporter);
our @EXPORT_OK = 'filter';
+# Specify package version
+our $VERSION = 0.03;
+
# Dispatch table of functions to handle different ref types for the spec
# hashref's values
my %types = (
@@ -89,7 +89,7 @@ List::Filters - Build list sublists matching conditions
=head1 VERSION
-Version 0.02
+Version 0.03
=head1 DESCRIPTION