The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
Build.PL 11
CHANGES 16
MANIFEST 01
META.json 036
META.yml 1315
Makefile.PL 88
lib/List/Uniq.pm 22
t/01_use.t 11
t/02_pod.t 11
t/03_pod_coverage.t 11
t/04_breakpoints.t 11
t/05_basic.t 11
t/06_context.t 11
t/07_sort.t 11
t/08_flatten.t 11
t/09_undef_element.t 11
t/10_rt_58389.t 11
t/11_recursive_arrayref.t 11
t/12_flatten.t 11
19 files changed (This is a version diff) 3781
@@ -1,5 +1,5 @@
 #
-# $Id: Build.PL 4496 2010-06-18 15:19:43Z james $
+# $Id$
 #
 
 use Module::Build;
@@ -1,5 +1,5 @@
 #
-# $Id: CHANGES 4496 2010-06-18 15:19:43Z james $
+# $Id$
 #
 
 Changelog for List::Uniq
@@ -27,5 +27,10 @@ Changelog for List::Uniq
     Added recursive flattening of list references by default with
     an option to disable this behaviour
 
+0.21.0  April 6th 2014
+
+    Version bump to add CPAN metadata courtesy of David Steinbrunner
+    (github.com/dsteinbrunner).  Change to semver-compliant version number
+
 #
 # EOF
@@ -18,3 +18,4 @@ t/09_undef_element.t
 t/10_rt_58389.t
 t/11_recursive_arrayref.t
 t/12_flatten.t
+META.json
@@ -0,0 +1,36 @@
+{
+   "abstract" : "extract the unique elements of a list",
+   "author" : [
+      "James FitzGibbon\n<james+perl@nadt.net>"
+   ],
+   "dynamic_config" : 1,
+   "generated_by" : "Module::Build version 0.38, CPAN::Meta::Converter version 2.110440",
+   "license" : [
+      "perl_5"
+   ],
+   "meta-spec" : {
+      "url" : "http://search.cpan.org/perldoc?CPAN::Meta::Spec",
+      "version" : "2"
+   },
+   "name" : "List-Uniq",
+   "prereqs" : {
+      "configure" : {
+         "requires" : {
+            "Module::Build" : "0.38"
+         }
+      }
+   },
+   "provides" : {
+      "List::Uniq" : {
+         "file" : "lib/List/Uniq.pm",
+         "version" : "v0.21.0"
+      }
+   },
+   "release_status" : "stable",
+   "resources" : {
+      "license" : [
+         "http://dev.perl.org/licenses/"
+      ]
+   },
+   "version" : "v0.21.0"
+}
@@ -1,19 +1,21 @@
 ---
-name: List-Uniq
-version: 0.20
+abstract: 'extract the unique elements of a list'
 author:
-  - |-
-    James FitzGibbon
-    <james+perl@nadt.net>
-abstract: extract the unique elements of a list
+  - "James FitzGibbon\n<james+perl@nadt.net>"
+build_requires: {}
+configure_requires:
+  Module::Build: 0.38
+dynamic_config: 1
+generated_by: 'Module::Build version 0.38, CPAN::Meta::Converter version 2.110440'
 license: perl
-resources:
-  license: http://dev.perl.org/licenses/
+meta-spec:
+  url: http://module-build.sourceforge.net/META-spec-v1.4.html
+  version: 1.4
+name: List-Uniq
 provides:
   List::Uniq:
     file: lib/List/Uniq.pm
-    version: 0.20
-generated_by: Module::Build version 0.280801
-meta-spec:
-  url: http://module-build.sourceforge.net/META-spec-v1.2.html
-  version: 1.2
+    version: v0.21.0
+resources:
+  license: http://dev.perl.org/licenses/
+version: v0.21.0
@@ -1,12 +1,12 @@
-# Note: this file was auto-generated by Module::Build::Compat version 0.2808_01
+# Note: this file was auto-generated by Module::Build::Compat version 0.3800
 use ExtUtils::MakeMaker;
 WriteMakefile
 (
-          'NAME' => 'List::Uniq',
-          'VERSION_FROM' => 'lib/List/Uniq.pm',
-          'PREREQ_PM' => {},
-          'INSTALLDIRS' => 'site',
-          'EXE_FILES' => [],
-          'PL_FILES' => {}
-        )
+  'PL_FILES' => {},
+  'INSTALLDIRS' => 'site',
+  'NAME' => 'List::Uniq',
+  'EXE_FILES' => [],
+  'VERSION_FROM' => 'lib/List/Uniq.pm',
+  'PREREQ_PM' => {}
+)
 ;
@@ -1,5 +1,5 @@
 #
-# $Id: Uniq.pm 4496 2010-06-18 15:19:43Z james $
+# $Id$
 #
 
 =head1 NAME
@@ -28,7 +28,7 @@ use base 'Exporter';
 use strict;
 use warnings;
 
-our $VERSION = '0.20';
+our $VERSION = '0.21.0';
 
 # set up exports
 our @EXPORT;
@@ -1,5 +1,5 @@
 #
-# $Id: 01_use.t 4496 2010-06-18 15:19:43Z james $
+# $Id$
 #
 
 use strict;
@@ -1,5 +1,5 @@
 #
-# $Id: 02_pod.t 4496 2010-06-18 15:19:43Z james $
+# $Id$
 #
 
 use strict;
@@ -1,5 +1,5 @@
 #
-# $Id: 03_pod_coverage.t 4496 2010-06-18 15:19:43Z james $
+# $Id$
 #
 
 use strict;
@@ -1,5 +1,5 @@
 #
-# $Id: 04_breakpoints.t 4496 2010-06-18 15:19:43Z james $
+# $Id$
 #
 
 use strict;
@@ -1,5 +1,5 @@
 #
-# $Id: 05_basic.t 4496 2010-06-18 15:19:43Z james $
+# $Id$
 #
 
 use strict;
@@ -1,5 +1,5 @@
 #
-# $Id: 06_context.t 4496 2010-06-18 15:19:43Z james $
+# $Id$
 #
 
 use strict;
@@ -1,5 +1,5 @@
 #
-# $Id: 07_sort.t 4496 2010-06-18 15:19:43Z james $
+# $Id$
 #
 
 use strict;
@@ -1,5 +1,5 @@
 #
-# $Id: 08_flatten.t 4496 2010-06-18 15:19:43Z james $
+# $Id$
 #
 
 use strict;
@@ -1,5 +1,5 @@
 #
-# $Id: 09_undef_element.t 4496 2010-06-18 15:19:43Z james $
+# $Id$
 #
 
 use strict;
@@ -1,5 +1,5 @@
 #
-# $Id: 10_rt_58389.t 4496 2010-06-18 15:19:43Z james $
+# $Id$
 #
 
 use strict;
@@ -1,5 +1,5 @@
 #
-# $Id: 11_recursive_arrayref.t 4496 2010-06-18 15:19:43Z james $
+# $Id$
 #
 
 use strict;
@@ -1,5 +1,5 @@
 #
-# $Id: 12_flatten.t 4496 2010-06-18 15:19:43Z james $
+# $Id$
 #
 
 use strict;