keep $VERSION in repo version of module
Karen Etheridge [Sat, 28 Mar 2015 01:38:59 +0000 (18:38 -0700)]
Makefile.PL
dist.ini
lib/Sub/Name.pm

index 96fc740..56a6201 100644 (file)
@@ -4,6 +4,7 @@ use lib 'inc';
 use ExtUtils::MakeMaker::Dist::Zilla::Develop;
 WriteMakefile(
     NAME => 'Sub::Name',
+    VERSION_FROM => 'lib/Sub/Name.pm',
     INSTALLMAN1DIR => 'none',
     INSTALLMAN3DIR => 'none',
 );
index 6c1a3a8..c4b9652 100644 (file)
--- a/dist.ini
+++ b/dist.ini
@@ -5,7 +5,7 @@ copyright_holder = Matthijs van Duin and cPanel Inc.
 copyright_year = 2004
 
 [@Author::ETHER]
-:version = 0.068
+:version = 0.086
 installer = MakeMaker
 Authority.authority = cpan:FLORA
 Test::MinimumVersion.max_target_perl = 5.006
index 344e4f8..53f1859 100644 (file)
@@ -53,6 +53,8 @@ use 5.006;
 use strict;
 use warnings;
 
+our $VERSION = '0.13';
+
 use Exporter 5.57 'import';
 
 our @EXPORT = qw(subname);
@@ -61,9 +63,7 @@ our @EXPORT_OK = @EXPORT;
 use XSLoader;
 XSLoader::load(
     __PACKAGE__,
-    exists $Sub::Name::{VERSION}
-        ? ${ $Sub::Name::{VERSION} }
-        : (),
+    $VERSION,
 );
 
 1;