add $VERSIONs to every module (RT#116427)
Karen Etheridge [Fri, 12 May 2017 17:06:12 +0000 (19:06 +0200)]
Changes
lib/Data/Dumper/Concise.pm
lib/Data/Dumper/Concise/Sugar.pm

diff --git a/Changes b/Changes
index b81b8ff..cab1163 100644 (file)
--- a/Changes
+++ b/Changes
@@ -1,6 +1,7 @@
 Revision history for Data-Dumper-Concise
 
   - convert distribution from Module::Install to Distar; fixes RT#120856
+  - every module has a $VERSION now (RT#116427)
 
 2.022 Mar 21 2014
   - Fix repo metadata
index 8adc5a9..09ec2f7 100644 (file)
@@ -2,7 +2,7 @@ package Data::Dumper::Concise;
 
 use 5.006;
 
-$VERSION = '2.023';
+our $VERSION = '2.023';
 
 require Exporter;
 require Data::Dumper;
index fa65682..78b3045 100644 (file)
@@ -2,6 +2,8 @@ package Data::Dumper::Concise::Sugar;
 
 use 5.006;
 
+our $VERSION = '2.023';
+
 use Exporter ();
 use Data::Dumper::Concise ();