update Config::General prereq to working version
Graham Knop [Wed, 15 Apr 2020 11:22:07 +0000 (13:22 +0200)]
Makefile.PL
lib/Config/Any/General.pm

index 456fc90..11ce936 100644 (file)
@@ -14,7 +14,7 @@ my %META = (
         'Module::Pluggable::Object' => '3.6',
       },
       suggests => {
-        'Config::General'       => '2.47',
+        'Config::General'       => '2.48',
         'Config::Tiny'          => 0,
         'Cpanel::JSON::XS'      => 0,
         'XML::Simple'           => 0,
@@ -24,7 +24,7 @@ my %META = (
     },
     develop => {
       requires => {
-        'Config::General'       => '2.47',
+        'Config::General'       => '2.48',
         'Config::Tiny'          => 0,
         'Cpanel::JSON::XS'      => 0,
         'XML::Simple'           => 0,
@@ -55,7 +55,9 @@ my %META = (
 
 my %MM_ARGS = (
   PREREQ_PM => {
-    (eval { require Config::General } ? ('Config::General' => '2.47') : ()),
+    (eval { require Config::General } ? (
+      'Config::General' => $META{prereqs}{runtime}{suggests}{'Config::General'}
+    ) : ()),
   },
 );
 
index 3ee7e21..c072293 100644 (file)
@@ -48,7 +48,7 @@ sub load {
     $args->{ -ConfigFile } = $file;
 
     require Config::General;
-    Config::General->VERSION( '2.47' );
+    Config::General->VERSION( '2.48' );
 
     $args->{ -ForceArray } = 1 unless exists $args->{ -ForceArray };
 
@@ -64,7 +64,7 @@ Specifies that this module requires L<Config::General> in order to work.
 
 =cut
 
-sub requires_all_of { [ 'Config::General' => '2.47' ] }
+sub requires_all_of { [ 'Config::General' => '2.48' ] }
 
 =head1 AUTHOR