The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
META.json 24
META.yml 13
Makefile.PL 15
locale.pm 24
4 files changed (This is a version diff) 616
@@ -32,10 +32,12 @@
       },
       "runtime" : {
          "requires" : {
-            "PerlIO::encoding" : 0
+            "I18N::Langinfo" : 0,
+            "PerlIO::encoding" : 0,
+            "Test::More" : 0
          }
       }
    },
    "release_status" : "stable",
-   "version" : "0.09"
+   "version" : "0.10"
 }
@@ -18,5 +18,7 @@ no_index:
     - t
     - inc
 requires:
+  I18N::Langinfo: 0
   PerlIO::encoding: 0
-version: 0.09
+  Test::More: 0
+version: 0.10
@@ -13,7 +13,11 @@ BARF
 WriteMakefile(
     AUTHOR => 'Leon Timmermans <leont@cpan.org>, Rafael Garcia-Suarez <rgs@consttype.org>',
     NAME => 'PerlIO::locale',
-    PREREQ_PM => { 'PerlIO::encoding' => 0 },
+    PREREQ_PM => {
+        'PerlIO::encoding' => 0,
+        'Test::More' => 0,
+        'I18N::Langinfo' => 0,
+    },
     VERSION_FROM => 'locale.pm',
     LICENSE => 'perl',
     clean => { FILES => "foo" },
@@ -4,7 +4,7 @@ use 5.008;
 use strict;
 use XSLoader;
 use PerlIO::encoding;
-our $VERSION = '0.09';
+our $VERSION = '0.10';
 
 XSLoader::load('PerlIO::locale', $VERSION);
 
@@ -53,10 +53,12 @@ A git repository for the sources is at L<https://github.com/rgs/PerlIO-locale>.
 
 =over 4
 
-=item * L<open>.
+=item * L<open>
 
 =item * L<PerlIO::encoding>
 
+=item * L<I18N::Langinfo>
+
 =back
 
 =cut