The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
Changes 14
MANIFEST 01
META.json 041
META.yml 1321
README 66
lib/List/Compare/Base/_Auxiliary.pm 55
lib/List/Compare/Base/_Engine.pm 55
lib/List/Compare/Functional.pm 55
lib/List/Compare.pm 107
9 files changed (This is a version diff) 4595
@@ -1,4 +1,4 @@
-#$Id: Changes 1329 2008-06-07 23:49:51Z jimk $
+#$Id: Changes 1506 2013-09-06 01:10:34Z jimk $
 Revision history for Perl extension List::Compare.
 
 0.04  Sat Jun  8 2002
@@ -148,3 +148,6 @@ List::Compare::Functional; other internal code clean-up
     - Tests refined and code refactored so as to achieve 100% subroutine,
       statement, branch and condition coverage by test suite as measured by
       Devel::Cover.  Some cleanup of POD.
+
+0.38 Thu Sep  5 21:09:10 EDT 2013
+    - Update support information; no longer using dedicated mailing list.
@@ -61,3 +61,4 @@ t/90_oo_errors.t
 t/91_func_errors.t
 t/IO/CaptureOutput.pm
 t/Test/ListCompareSpecial.pm
+META.json                                Module JSON meta-data (added by MakeMaker)
@@ -0,0 +1,41 @@
+{
+   "abstract" : "Compare elements of two or more lists",
+   "author" : [
+      "James E Keenan (jkeenan@cpan.org)"
+   ],
+   "dynamic_config" : 1,
+   "generated_by" : "ExtUtils::MakeMaker version 6.66, CPAN::Meta::Converter version 2.120921",
+   "license" : [
+      "unknown"
+   ],
+   "meta-spec" : {
+      "url" : "http://search.cpan.org/perldoc?CPAN::Meta::Spec",
+      "version" : "2"
+   },
+   "name" : "List-Compare",
+   "no_index" : {
+      "directory" : [
+         "t",
+         "inc"
+      ]
+   },
+   "prereqs" : {
+      "build" : {
+         "requires" : {
+            "ExtUtils::MakeMaker" : "0"
+         }
+      },
+      "configure" : {
+         "requires" : {
+            "ExtUtils::MakeMaker" : "0"
+         }
+      },
+      "runtime" : {
+         "requires" : {
+            "Test::Simple" : "0.1"
+         }
+      }
+   },
+   "release_status" : "stable",
+   "version" : "0.38"
+}
@@ -1,14 +1,22 @@
---- #YAML:1.0
-name:                List-Compare
-version:             0.37
-abstract:            Compare elements of two or more lists
-license:             ~
-author:              
-    - James E Keenan (jkeenan@cpan.org)
-generated_by:        ExtUtils::MakeMaker version 6.42
-distribution_type:   module
-requires:     
-    Test::Simple:                  0.1
+---
+abstract: 'Compare elements of two or more lists'
+author:
+  - 'James E Keenan (jkeenan@cpan.org)'
+build_requires:
+  ExtUtils::MakeMaker: 0
+configure_requires:
+  ExtUtils::MakeMaker: 0
+dynamic_config: 1
+generated_by: 'ExtUtils::MakeMaker version 6.66, CPAN::Meta::Converter version 2.120921'
+license: unknown
 meta-spec:
-    url:     http://module-build.sourceforge.net/META-spec-v1.3.html
-    version: 1.3
+  url: http://module-build.sourceforge.net/META-spec-v1.4.html
+  version: 1.4
+name: List-Compare
+no_index:
+  directory:
+    - t
+    - inc
+requires:
+  Test::Simple: 0.1
+version: 0.38
@@ -1,15 +1,15 @@
-#$Id: README 1329 2008-06-07 23:49:51Z jimk $
+#$Id: README 1506 2013-09-06 01:10:34Z jimk $
 List::Compare - Compare elements of two or more lists
 
-This document refers to version 0.37 of List::Compare.  This version was
-released June 07, 2008.
+This document refers to version 0.38 of List::Compare.  This version was
+released September 05, 2013.
 
 To install this module on your system, place the tarball archive file in a 
 temporary directory and call the following:
 
-% gunzip List-Compare-0.37.tar.gz
-% tar xf List-Compare-0.37.tar
-% cd List-Compare-0.37
+% gunzip List-Compare-0.38.tar.gz
+% tar xf List-Compare-0.38.tar
+% cd List-Compare-0.38
 % perl Makefile.PL
 % make
 % make test
@@ -1,6 +1,6 @@
 package List::Compare::Base::_Auxiliary;
-#$Id: _Auxiliary.pm 1329 2008-06-07 23:49:51Z jimk $
-$VERSION = 0.37;
+#$Id: _Auxiliary.pm 1506 2013-09-06 01:10:34Z jimk $
+$VERSION = 0.38;
 use Carp;
 @ISA = qw(Exporter);
 @EXPORT_OK = qw|
@@ -753,8 +753,8 @@ List::Compare::Base::_Auxiliary - Internal use only
 
 =head1 VERSION
 
-This document refers to version 0.37 of List::Compare::Base::_Auxiliary.
-This version was released June 07, 2008.
+This document refers to version 0.38 of List::Compare::Base::_Auxiliary.
+This version was released September 05, 2013.
 
 =head1 SYNOPSIS
 
@@ -766,7 +766,7 @@ List::Compare::Functional.  They are not intended to be publicly callable.
 James E. Keenan (jkeenan@cpan.org).  When sending correspondence, please 
 include 'List::Compare' or 'List-Compare' in your subject line.
 
-Creation date:  May 20, 2002.  Last modification date:  June 07, 2008. 
+Creation date:  May 20, 2002.  Last modification date:  September 05, 2013. 
 Copyright (c) 2002-08 James E. Keenan.  United States.  All rights reserved. 
 This is free software and may be distributed under the same terms as Perl
 itself.
@@ -1,6 +1,6 @@
 package List::Compare::Base::_Engine;
-#$Id: _Engine.pm 1329 2008-06-07 23:49:51Z jimk $
-$VERSION = 0.37;
+#$Id: _Engine.pm 1506 2013-09-06 01:10:34Z jimk $
+$VERSION = 0.38;
 # Holds subroutines used within 
 # List::Compare::Base::Accelerated and List::Compare::Functional
 # As of:  09/18/2005
@@ -83,8 +83,8 @@ List::Compare::Base::_Engine - Internal use only
 
 =head1 VERSION
 
-This document refers to version 0.37 of List::Compare::Base::_Engine.
-This version was released June 07, 2008.
+This document refers to version 0.38 of List::Compare::Base::_Engine.
+This version was released September 05, 2013.
 
 =head1 SYNOPSIS
 
@@ -96,7 +96,7 @@ List::Compare::Functional.  They are not intended to be publicly callable.
 James E. Keenan (jkeenan@cpan.org).  When sending correspondence, please 
 include 'List::Compare' or 'List-Compare' in your subject line.
 
-Creation date:  May 20, 2002.  Last modification date:  June 07, 2008. 
+Creation date:  May 20, 2002.  Last modification date:  September 05, 2013. 
 Copyright (c) 2002-04 James E. Keenan.  United States.  All rights reserved. 
 This is free software and may be distributed under the same terms as Perl
 itself.
@@ -1,6 +1,6 @@
 package List::Compare::Functional;
-#$Id: Functional.pm 1329 2008-06-07 23:49:51Z jimk $
-$VERSION = 0.37;
+#$Id: Functional.pm 1506 2013-09-06 01:10:34Z jimk $
+$VERSION = 0.38;
 @ISA = qw(Exporter);
 @EXPORT_OK = qw|
     get_intersection
@@ -521,8 +521,8 @@ List::Compare::Functional - Compare elements of two or more lists
 
 =head1 VERSION
 
-This document refers to version 0.37 of List::Compare::Functional.  
-This version was released June 07, 2008.  The first released 
+This document refers to version 0.38 of List::Compare::Functional.  
+This version was released September 05, 2013.  The first released 
 version of List::Compare::Functional was v0.21.  Its version numbers 
 are set to be consistent with the other parts of the List::Compare 
 distribution.
@@ -1686,7 +1686,7 @@ James E. Keenan (jkeenan@cpan.org).  When sending correspondence, please
 include 'List::Compare::Functional' or 'List-Compare-Functional' in your 
 subject line.
 
-Creation date:  May 20, 2002.  Last modification date:  June 07, 2008. 
+Creation date:  May 20, 2002.  Last modification date:  September 05, 2013. 
 Copyright (c) 2002-08 James E. Keenan.  United States.  All rights reserved. 
 This is free software and may be distributed under the same terms as Perl
 itself.
@@ -1,6 +1,6 @@
 package List::Compare;
-#$Id: Compare.pm 1329 2008-06-07 23:49:51Z jimk $
-$VERSION = '0.37';
+#$Id: Compare.pm 1506 2013-09-06 01:10:34Z jimk $
+$VERSION = '0.38';
 use strict;
 local $^W = 1;
 use Carp;
@@ -1745,8 +1745,8 @@ List::Compare - Compare elements of two or more lists
 
 =head1 VERSION
 
-This document refers to version 0.37 of List::Compare.  This version was
-released June 07, 2008.
+This document refers to version 0.38 of List::Compare.  This version was
+released September 05, 2013.
 
 =head1 SYNOPSIS
 
@@ -3162,10 +3162,7 @@ CPAN upload date of this distribution.
 
 =head1 SUPPORT
 
-Support for List::Compare is now provided by mailing list:
-L<http://thenceforward.net/cgi-bin/mailman/listinfo/list-compare>.
-
-Please report any bugs by mail to C<bug-ExtUtils-ModuleMaker@rt.cpan.org> 
+Please report any bugs by mail to C<bug-List-Compare@rt.cpan.org> 
 or through the web interface at L<http://rt.cpan.org>.
 
 =head1 AUTHOR
@@ -3173,11 +3170,11 @@ or through the web interface at L<http://rt.cpan.org>.
 James E. Keenan (jkeenan@cpan.org).  When sending correspondence, please 
 include 'List::Compare' or 'List-Compare' in your subject line.
 
-Creation date:  May 20, 2002.  Last modification date:  June 07, 2008.
+Creation date:  May 20, 2002.  Last modification date:  September 05, 2013.
 
 =head1 COPYRIGHT
 
-Copyright (c) 2002-06 James E. Keenan.  United States.  All rights reserved. 
+Copyright (c) 2002-13 James E. Keenan.  United States.  All rights reserved. 
 This is free software and may be distributed under the same terms as Perl
 itself.