summaryrefslogtreecommitdiff
path: root/cpan/version
diff options
context:
space:
mode:
authorSteve Hay <steve.m.hay@googlemail.com>2018-07-04 09:01:56 +0100
committerSteve Hay <steve.m.hay@googlemail.com>2018-07-04 09:01:56 +0100
commitc9137fab2115ee073cb6b88232c58647afc887e9 (patch)
tree9f3f9987c27575a23c2a9a96e9bef7fa26fa2531 /cpan/version
parent2f94a6fa7b9c8a2611ced9e40bd18170f441acfd (diff)
downloadperl-c9137fab2115ee073cb6b88232c58647afc887e9.tar.gz
Sync with version-0.9924
(There are no material changes to any files in core.)
Diffstat (limited to 'cpan/version')
-rw-r--r--cpan/version/lib/version.pm2
-rw-r--r--cpan/version/lib/version/regex.pm2
-rw-r--r--cpan/version/t/01base.t2
-rw-r--r--cpan/version/t/02derived.t2
-rw-r--r--cpan/version/t/03require.t2
-rw-r--r--cpan/version/t/05sigdie.t2
-rw-r--r--cpan/version/t/06noop.t2
-rw-r--r--cpan/version/t/07locale.t2
-rw-r--r--cpan/version/t/08_corelist.t2
-rw-r--r--cpan/version/t/09_list_util.t2
10 files changed, 10 insertions, 10 deletions
diff --git a/cpan/version/lib/version.pm b/cpan/version/lib/version.pm
index 66d44be63d..72e78403d9 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.9923;
+our $VERSION = 0.9924;
our $CLASS = 'version';
our (@ISA, $STRICT, $LAX);
diff --git a/cpan/version/lib/version/regex.pm b/cpan/version/lib/version/regex.pm
index 4e44d12c93..dd9103cb7c 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.9923;
+our $VERSION = 0.9924;
#--------------------------------------------------------------------------#
# Version regexp components
diff --git a/cpan/version/t/01base.t b/cpan/version/t/01base.t
index 9c3862db39..8d7d4cb18d 100644
--- a/cpan/version/t/01base.t
+++ b/cpan/version/t/01base.t
@@ -14,7 +14,7 @@ BEGIN {
)
);
require $coretests;
- use_ok('version', 0.9923);
+ use_ok('version', 0.9924);
}
BaseTests("version","new","qv");
diff --git a/cpan/version/t/02derived.t b/cpan/version/t/02derived.t
index 151f66cc20..a8da5b841a 100644
--- a/cpan/version/t/02derived.t
+++ b/cpan/version/t/02derived.t
@@ -15,7 +15,7 @@ BEGIN {
)
);
require $coretests;
- use_ok("version", 0.9923);
+ use_ok("version", 0.9924);
# If we made it this far, we are ok.
}
diff --git a/cpan/version/t/03require.t b/cpan/version/t/03require.t
index c6f67d50ac..a28b897508 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.9923, "Make sure we have the correct class";
+is $version::VERSION, 0.9924, "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 e979eced20..399739c43b 100644
--- a/cpan/version/t/05sigdie.t
+++ b/cpan/version/t/05sigdie.t
@@ -14,7 +14,7 @@ BEGIN {
}
BEGIN {
- use version 0.9923;
+ use version 0.9924;
}
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 a34762e18d..7db76cec5d 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.9923);
+ use_ok('version', 0.9924);
}
my $v1 = version->new('1.2');
diff --git a/cpan/version/t/07locale.t b/cpan/version/t/07locale.t
index 79b22abe57..a6f6e33d54 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.9923);
+ use_ok('version', 0.9924);
}
SKIP: {
diff --git a/cpan/version/t/08_corelist.t b/cpan/version/t/08_corelist.t
index 638b290936..86398b0d07 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.9923);
+use_ok("version", 0.9924);
# 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 34e47dce8f..63ff66761b 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.9923);
+use_ok("version", 0.9924);
use Test::More;
BEGIN {