increment $VERSION after release
[p5sagit/Sub-Name.git] / lib / Sub / Name.pm
index 37ac897..c8dfbe0 100644 (file)
@@ -32,17 +32,14 @@ can be very useful for debugging.
 
 =head1 SEE ALSO
 
-=over 4
+=for :list
+* L<Sub::Identify> - for getting information about subs
+* L<Sub::Util> - set_subname is another implementation of C<subname>
 
-=item *
-L<Sub::Identify> - for getting information about subs
-
-=back
+=for stopwords cPanel
 
 =head1 COPYRIGHT AND LICENSE
 
-=for stopwords cPanel
-
 This software is copyright (c) 2004, 2008 by Matthijs van Duin, all rights reserved;
 copyright (c) 2014 cPanel Inc., all rights reserved.
 
@@ -56,7 +53,9 @@ use 5.006;
 use strict;
 use warnings;
 
-use base 'Exporter';
+our $VERSION = '0.14';
+
+use Exporter 5.57 'import';
 
 our @EXPORT = qw(subname);
 our @EXPORT_OK = @EXPORT;
@@ -64,9 +63,7 @@ our @EXPORT_OK = @EXPORT;
 use XSLoader;
 XSLoader::load(
     __PACKAGE__,
-    exists $Sub::Name::{VERSION}
-        ? ${ $Sub::Name::{VERSION} }
-        : (),
+    $VERSION,
 );
 
 1;