From: Peter Rabbitson Date: Thu, 19 Jan 2012 09:00:13 +0000 (+0100) Subject: Quote all dep versions (preserve trailing 0's and whatnot) X-Git-Tag: v0.11011~32 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=cc55331274ffeee78e407917c13832ab8661ec23;p=dbsrgits%2FSQL-Translator.git Quote all dep versions (preserve trailing 0's and whatnot) --- diff --git a/Makefile.PL b/Makefile.PL index 9aeb10f..b3fc738 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -3,41 +3,41 @@ use strict; use warnings; # to deal wuth x.y.z versions properly -configure_requires 'ExtUtils::MakeMaker' => 6.54; +configure_requires 'ExtUtils::MakeMaker' => '6.54'; my $deps = { requires => { - 'Class::Base' => 0, - 'Class::Data::Inheritable' => 0.02, - 'Digest::SHA' => 0, - 'Carp::Clan' => 0, - 'IO::Dir' => 0, - 'IO::Scalar' => 2.110, - 'Parse::RecDescent' => 1.964001, - 'Pod::Usage' => 0, - 'DBI' => 0, - 'File::ShareDir' => 1.0, - 'File::Spec' => 0, - 'Scalar::Util' => 0, - 'XML::Writer' => 0.500, - 'Moo' => 0.009007, + 'Class::Base' => '0', + 'Class::Data::Inheritable' => '0.02', + 'Digest::SHA' => '0', + 'Carp::Clan' => '0', + 'IO::Dir' => '0', + 'IO::Scalar' => '2.110', + 'Parse::RecDescent' => '1.964001', + 'Pod::Usage' => '0', + 'DBI' => '0', + 'File::ShareDir' => '1.0', + 'File::Spec' => '0', + 'Scalar::Util' => '0', + 'XML::Writer' => '0.500', + 'Moo' => '0.009007', }, recommends => { - 'Template' => 2.20, - 'GD' => 0, - 'GraphViz' => 0, - 'Graph::Directed' => 0, - 'Spreadsheet::ParseExcel' => 0.41, - 'Text::ParseWords' => 0, - 'Text::RecordParser' => 0.02, - 'XML::LibXML' => 1.69, + 'Template' => '2.20', + 'GD' => '0', + 'GraphViz' => '0', + 'Graph::Directed' => '0', + 'Spreadsheet::ParseExcel' => '0.41', + 'Text::ParseWords' => '0', + 'Text::RecordParser' => '0.02', + 'XML::LibXML' => '1.69', }, test_requires => { - 'YAML' => 0.66, - 'File::Basename' => 0, - 'Test::More' => 0.6, - 'Test::Differences' => 0, - 'Test::Exception' => 0, + 'YAML' => '0.66', + 'File::Basename' => '0', + 'Test::More' => '0.6', + 'Test::Differences' => '0', + 'Test::Exception' => '0', }, };