projects
/
p5sagit/Data-Dumper-Concise.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
(parent:
193eaf5
)
add $VERSIONs to every module (RT#116427)
Karen Etheridge [Fri, 12 May 2017 17:06:12 +0000 (19:06 +0200)]
Changes
patch
|
blob
|
blame
|
history
lib/Data/Dumper/Concise.pm
patch
|
blob
|
blame
|
history
lib/Data/Dumper/Concise/Sugar.pm
patch
|
blob
|
blame
|
history
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
diff --git
a/lib/Data/Dumper/Concise.pm
b/lib/Data/Dumper/Concise.pm
index
8adc5a9
..
09ec2f7
100644
(file)
--- a/
lib/Data/Dumper/Concise.pm
+++ b/
lib/Data/Dumper/Concise.pm
@@
-2,7
+2,7
@@
package Data::Dumper::Concise;
use 5.006;
-$VERSION = '2.023';
+our $VERSION = '2.023';
require Exporter;
require Data::Dumper;
diff --git
a/lib/Data/Dumper/Concise/Sugar.pm
b/lib/Data/Dumper/Concise/Sugar.pm
index
fa65682
..
78b3045
100644
(file)
--- a/
lib/Data/Dumper/Concise/Sugar.pm
+++ b/
lib/Data/Dumper/Concise/Sugar.pm
@@
-2,6
+2,8
@@
package Data::Dumper::Concise::Sugar;
use 5.006;
+our $VERSION = '2.023';
+
use Exporter ();
use Data::Dumper::Concise ();