Use a recommended version number to avoid the strange eval dance when using '1' only
authorVincent Tondellier <tonton+hg@team1664.org>
Thu, 28 Aug 2014 00:06:24 +0200
changeset 48 d6c5b0633fe2
parent 47 b8a7a5ec6461
child 49 c088af64f31f
Use a recommended version number to avoid the strange eval dance when using '1' only Fixes the last perlcritic error
lib/CrashTest/Storage/Sql/Schema.pm
--- a/lib/CrashTest/Storage/Sql/Schema.pm	Wed Aug 27 23:51:42 2014 +0200
+++ b/lib/CrashTest/Storage/Sql/Schema.pm	Thu Aug 28 00:06:24 2014 +0200
@@ -15,8 +15,7 @@
 package CrashTest::Storage::Sql::Schema;
 use base qw/DBIx::Class::Schema/;
 
-our $VERSION = '1';
-$VERSION = eval $VERSION;
+our $VERSION = '1.00';
 
 __PACKAGE__->load_namespaces();