This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Upgrade version from version 0.9908 to 0.9909
authorSteve Hay <steve.m.hay@googlemail.com>
Tue, 26 Aug 2014 08:22:06 +0000 (09:22 +0100)
committerSteve Hay <steve.m.hay@googlemail.com>
Tue, 26 Aug 2014 08:22:06 +0000 (09:22 +0100)
This includes some blead changes, but more are still waiting to be
incorporated into the next CPAN release, namely 7738054cc9 and dcccc8ffbf.

14 files changed:
Porting/Maintainers.pl
cpan/version/lib/version.pm
cpan/version/lib/version/regex.pm
cpan/version/lib/version/vpp.pm
cpan/version/t/00impl-pp.t
cpan/version/t/01base.t
cpan/version/t/02derived.t
cpan/version/t/03require.t
cpan/version/t/05sigdie.t
cpan/version/t/06noop.t
cpan/version/t/07locale.t
cpan/version/t/08_corelist.t
cpan/version/t/09_list_util.t
t/porting/customized.dat

index 3d69652..381e848 100755 (executable)
@@ -1231,7 +1231,7 @@ use File::Glob qw(:case);
     },
 
     'version' => {
-        'DISTRIBUTION' => 'JPEACOCK/version-0.9908.tar.gz',
+        'DISTRIBUTION' => 'JPEACOCK/version-0.9909.tar.gz',
         'FILES'        => q[cpan/version vutil.c vutil.h vxs.inc],
         'EXCLUDED' => [
             qr{^vutil/lib/},
@@ -1250,7 +1250,6 @@ use File::Glob qw(:case);
 
             # Merged upstream, waiting for new CPAN release: see CPAN RT#92721
             qw( vutil.c
-                vxs.inc
                 ),
         ],
 
index b337a90..f8afd84 100644 (file)
@@ -6,7 +6,7 @@ use strict;
 
 use vars qw(@ISA $VERSION $CLASS $STRICT $LAX *declare *qv);
 
-$VERSION = 0.9908;
+$VERSION = 0.9909;
 $CLASS = 'version';
 
 # avoid using Exporter
index f92c78b..f732963 100644 (file)
@@ -4,7 +4,7 @@ use strict;
 
 use vars qw($VERSION $CLASS $STRICT $LAX);
 
-$VERSION = 0.9908;
+$VERSION = 0.9909;
 
 #--------------------------------------------------------------------------#
 # Version regexp components
index 3ac3f13..b821f92 100644 (file)
@@ -122,7 +122,7 @@ use strict;
 
 use Config;
 use vars qw($VERSION $CLASS @ISA $LAX $STRICT);
-$VERSION = 0.9908;
+$VERSION = 0.9909;
 $CLASS = 'version::vpp';
 
 require version::regex;
index ba540c9..42b03c6 100644 (file)
@@ -9,7 +9,7 @@ use Test::More qw/no_plan/;
 BEGIN {
     (my $coretests = $0) =~ s'[^/]+\.t'coretests.pm';
     require $coretests;
-    use_ok('version::vpp', 0.9908);
+    use_ok('version::vpp', 0.9909);
 }
 
 BaseTests("version::vpp","new","qv");
index b452e3b..6174194 100644 (file)
@@ -9,7 +9,7 @@ use Test::More qw/no_plan/;
 BEGIN {
     (my $coretests = $0) =~ s'[^/]+\.t'coretests.pm';
     require $coretests;
-    use_ok('version', 0.9908);
+    use_ok('version', 0.9909);
 }
 
 BaseTests("version","new","qv");
index ee9e674..a5aa2e4 100644 (file)
@@ -10,7 +10,7 @@ use File::Temp qw/tempfile/;
 BEGIN {
     (my $coretests = $0) =~ s'[^/]+\.t'coretests.pm';
     require $coretests;
-    use_ok("version", 0.9908);
+    use_ok("version", 0.9909);
     # If we made it this far, we are ok.
 }
 
index c394728..f6100ef 100644 (file)
@@ -14,7 +14,7 @@ BEGIN {
 # Don't want to use, because we need to make sure that the import doesn't
 # fire just yet (some code does this to avoid importing qv() and delare()).
 require_ok("version");
-is $version::VERSION, 0.9908, "Make sure we have the correct class";
+is $version::VERSION, 0.9909, "Make sure we have the correct class";
 ok(!"main"->can("qv"), "We don't have the imported qv()");
 ok(!"main"->can("declare"), "We don't have the imported declare()");
 
index 8b5b375..0b82313 100644 (file)
@@ -14,7 +14,7 @@ BEGIN {
 }
 
 BEGIN {
-    use version 0.9908;
+    use version 0.9909;
 }
 
 pass "Didn't get caught by the wrong DIE handler, which is a good thing";
index 66baef4..ed24602 100644 (file)
@@ -7,7 +7,7 @@
 use Test::More qw/no_plan/;
 
 BEGIN {
-    use_ok('version', 0.9908);
+    use_ok('version', 0.9909);
 }
 
 my $v1 = version->new('1.2');
index d852aec..7af61b5 100644 (file)
@@ -11,7 +11,7 @@ use Test::More tests => 7;
 use Config;
 
 BEGIN {
-    use_ok('version', 0.9908);
+    use_ok('version', 0.9909);
 }
 
 SKIP: {
index 310c9cd..d7829c1 100644 (file)
@@ -5,7 +5,7 @@
 #########################
 
 use Test::More tests => 3;
-use_ok("version", 0.9908);
+use_ok("version", 0.9909);
 
 # do strict lax tests in a sub to isolate a package to test importing
 SKIP: {
index d0e3fa9..dbd387d 100644 (file)
@@ -4,7 +4,7 @@
 #########################
 
 use strict;
-use_ok("version", 0.9908);
+use_ok("version", 0.9909);
 use Test::More;
 
 BEGIN {
index a8ee6ec..392aec1 100644 (file)
@@ -15,6 +15,5 @@ Text::ParseWords cpan/Text-ParseWords/t/taint.t 3cff0dae812801f7aa1738d6070508f2
 autodie cpan/autodie/t/utf8_open.t 5295851351c49f939008c5aca6a798742b1e503d
 podlators cpan/podlators/scripts/pod2man.PL f81acf53f3ff46cdcc5ebdd661c5d13eb35d20d6
 podlators cpan/podlators/scripts/pod2text.PL b4693fcfe4a0a1b38a215cfb8985a65d5d025d69
-version cpan/version/lib/version.pm fa9931d4db05aff9a0a6ef558610b1a472d9306e
+version cpan/version/lib/version.pm d0923b895d57f1d669ae36fcf85c87b16db341d1
 version vutil.c 668f17ca43e2527645674d29ba772b86330d5663
-version vxs.inc 9064aacbdfe42bb584a068f62b505dd11dbb4dc4