From ff6af44f60e2d4d614ab3c464ee736cd7b332a4d Mon Sep 17 00:00:00 2001 From: Todd Rinaldo Date: Fri, 21 May 2021 10:01:32 -0500 Subject: Update version from CPAN to 0.9929 [DELTA] 0.9929 * Upgrade to ppport 3.62 * Import fix for core build warning --- cpan/version/lib/version.pm | 2 +- cpan/version/lib/version/regex.pm | 2 +- cpan/version/t/01base.t | 2 +- cpan/version/t/02derived.t | 2 +- cpan/version/t/03require.t | 2 +- cpan/version/t/05sigdie.t | 2 +- cpan/version/t/06noop.t | 2 +- cpan/version/t/07locale.t | 4 ++-- cpan/version/t/08_corelist.t | 2 +- cpan/version/t/09_list_util.t | 2 +- 10 files changed, 11 insertions(+), 11 deletions(-) (limited to 'cpan/version') diff --git a/cpan/version/lib/version.pm b/cpan/version/lib/version.pm index 5531d76428..3b9786c184 100644 --- a/cpan/version/lib/version.pm +++ b/cpan/version/lib/version.pm @@ -8,7 +8,7 @@ if ($] >= 5.015) { warnings::register_categories(qw/version/); } -our $VERSION = 0.9928; +our $VERSION = 0.9929; our $CLASS = 'version'; our (@ISA, $STRICT, $LAX); diff --git a/cpan/version/lib/version/regex.pm b/cpan/version/lib/version/regex.pm index 3b221beba0..caaebe687c 100644 --- a/cpan/version/lib/version/regex.pm +++ b/cpan/version/lib/version/regex.pm @@ -2,7 +2,7 @@ package version::regex; use strict; -our $VERSION = 0.9928; +our $VERSION = 0.9929; #--------------------------------------------------------------------------# # Version regexp components diff --git a/cpan/version/t/01base.t b/cpan/version/t/01base.t index 65f4aa31a7..d60abae4f4 100644 --- a/cpan/version/t/01base.t +++ b/cpan/version/t/01base.t @@ -14,7 +14,7 @@ BEGIN { ) ); require $coretests; - use_ok('version', 0.9928); + use_ok('version', 0.9929); } BaseTests("version","new","qv"); diff --git a/cpan/version/t/02derived.t b/cpan/version/t/02derived.t index 4bab2a216f..815b592f48 100644 --- a/cpan/version/t/02derived.t +++ b/cpan/version/t/02derived.t @@ -15,7 +15,7 @@ BEGIN { ) ); require $coretests; - use_ok("version", 0.9928); + use_ok("version", 0.9929); # If we made it this far, we are ok. } diff --git a/cpan/version/t/03require.t b/cpan/version/t/03require.t index 35efa7b0a3..a7a72baa1c 100644 --- a/cpan/version/t/03require.t +++ b/cpan/version/t/03require.t @@ -19,7 +19,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.9928, "Make sure we have the correct class"; +is $version::VERSION, 0.9929, "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()"); diff --git a/cpan/version/t/05sigdie.t b/cpan/version/t/05sigdie.t index 5429731bb3..8d98e5c440 100644 --- a/cpan/version/t/05sigdie.t +++ b/cpan/version/t/05sigdie.t @@ -14,7 +14,7 @@ BEGIN { } BEGIN { - use version 0.9928; + use version 0.9929; } pass "Didn't get caught by the wrong DIE handler, which is a good thing"; diff --git a/cpan/version/t/06noop.t b/cpan/version/t/06noop.t index eb0a45edbe..b5cf08a330 100644 --- a/cpan/version/t/06noop.t +++ b/cpan/version/t/06noop.t @@ -7,7 +7,7 @@ use Test::More qw/no_plan/; BEGIN { - use_ok('version', 0.9928); + use_ok('version', 0.9929); } my $v1 = 'version'->new('1.2'); diff --git a/cpan/version/t/07locale.t b/cpan/version/t/07locale.t index ad63e787b0..eb68d74593 100644 --- a/cpan/version/t/07locale.t +++ b/cpan/version/t/07locale.t @@ -11,7 +11,7 @@ use Test::More tests => 8; use Config; BEGIN { - use_ok('version', 0.9928); + use_ok('version', 0.9929); } SKIP: { @@ -77,7 +77,7 @@ EOF eval "use lib '.'; use $package;"; unlike($warning, qr"Version string '1,7' contains invalid data", 'Handle locale action-at-a-distance'); - } +} __DATA__ af_ZA diff --git a/cpan/version/t/08_corelist.t b/cpan/version/t/08_corelist.t index 886b23ced8..a0b4fdd31f 100644 --- a/cpan/version/t/08_corelist.t +++ b/cpan/version/t/08_corelist.t @@ -5,7 +5,7 @@ ######################### use Test::More tests => 3; -use_ok("version", 0.9928); +use_ok("version", 0.9929); # do strict lax tests in a sub to isolate a package to test importing SKIP: { diff --git a/cpan/version/t/09_list_util.t b/cpan/version/t/09_list_util.t index bcd88a3d88..cf354072ed 100644 --- a/cpan/version/t/09_list_util.t +++ b/cpan/version/t/09_list_util.t @@ -4,7 +4,7 @@ ######################### use strict; -use_ok("version", 0.9928); +use_ok("version", 0.9929); use Test::More; BEGIN { -- cgit v1.2.1