summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xPorting/Maintainers.pl2
-rw-r--r--cpan/Module-Metadata/lib/Module/Metadata.pm2
-rw-r--r--cpan/Module-Metadata/t/metadata.t14
-rw-r--r--pod/perldelta.pod4
4 files changed, 13 insertions, 9 deletions
diff --git a/Porting/Maintainers.pl b/Porting/Maintainers.pl
index 51e3e9c4b4..71fd08250a 100755
--- a/Porting/Maintainers.pl
+++ b/Porting/Maintainers.pl
@@ -1062,7 +1062,7 @@ use File::Glob qw(:case);
'Module::Metadata' =>
{
'MAINTAINER' => 'dagolden',
- 'DISTRIBUTION' => 'DAGOLDEN/Module-Metadata-1.000003.tar.gz',
+ 'DISTRIBUTION' => 'DAGOLDEN/Module-Metadata-1.000004.tar.gz',
'FILES' => q[cpan/Module-Metadata],
'EXCLUDED' => [ ],
'UPSTREAM' => 'cpan',
diff --git a/cpan/Module-Metadata/lib/Module/Metadata.pm b/cpan/Module-Metadata/lib/Module/Metadata.pm
index e02b48f6ab..9d602261d5 100644
--- a/cpan/Module-Metadata/lib/Module/Metadata.pm
+++ b/cpan/Module-Metadata/lib/Module/Metadata.pm
@@ -11,7 +11,7 @@ package Module::Metadata;
use strict;
use vars qw($VERSION);
-$VERSION = '1.000003';
+$VERSION = '1.000004';
$VERSION = eval $VERSION;
use File::Spec;
diff --git a/cpan/Module-Metadata/t/metadata.t b/cpan/Module-Metadata/t/metadata.t
index 7f5cd92a7b..f3d08aaae7 100644
--- a/cpan/Module-Metadata/t/metadata.t
+++ b/cpan/Module-Metadata/t/metadata.t
@@ -177,6 +177,13 @@ plan tests => 37 + 2 * keys( %modules );
require_ok('Module::Metadata');
+# class method C<find_module_by_name>
+my $module = Module::Metadata->find_module_by_name(
+ 'Module::Metadata' );
+ok( -e $module, 'find_module_by_name() succeeds' );
+
+#########################
+
my $tmp = MBTest->tmpdir;
use DistGen;
@@ -185,13 +192,6 @@ $dist->regen;
$dist->chdir_in;
-#########################
-
-# class method C<find_module_by_name>
-my $module = Module::Metadata->find_module_by_name(
- 'Module::Metadata' );
-ok( -e $module, 'find_module_by_name() succeeds' );
-
# fail on invalid module name
my $pm_info = Module::Metadata->new_from_module(
diff --git a/pod/perldelta.pod b/pod/perldelta.pod
index 3f0d2d8784..6d2fe1d4a0 100644
--- a/pod/perldelta.pod
+++ b/pod/perldelta.pod
@@ -144,6 +144,10 @@ Module::Build::YAML has been deprecated in favor of L<CPAN::Meta::YAML>.
=item *
+C<Module::Metadata> has been upgraded from version 1.000003 to 1.000004.
+
+=item *
+
C<Unicode::Collate> has been upgraded from version 0.68 to 0.72
This also sees the switch from using the pure-perl version of this