summaryrefslogtreecommitdiff
path: root/cpan/version
diff options
context:
space:
mode:
authorJohn Peacock <jpeacock@cpan.org>2016-03-18 21:43:52 -0400
committerDavid Mitchell <davem@iabyn.com>2016-03-19 11:37:37 +0000
commit3462bde70bf321f756bf8f21ca688fa12d17dbdd (patch)
treed23465eafde870719432d9258199c1e8abcebe09 /cpan/version
parentdf61f5a9a27706fb7cd2b7bb1ab932ee8142f511 (diff)
downloadperl-3462bde70bf321f756bf8f21ca688fa12d17dbdd.tar.gz
Update version to 0.9916
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 d20427cc1c..201561877e 100644
--- a/cpan/version/lib/version.pm
+++ b/cpan/version/lib/version.pm
@@ -10,7 +10,7 @@ if ($] >= 5.015) {
use vars qw(@ISA $VERSION $CLASS $STRICT $LAX *declare *qv);
-$VERSION = 0.9914;
+$VERSION = 0.9916;
$CLASS = 'version';
# avoid using Exporter
diff --git a/cpan/version/lib/version/regex.pm b/cpan/version/lib/version/regex.pm
index dc769c28dd..62c1f227d2 100644
--- a/cpan/version/lib/version/regex.pm
+++ b/cpan/version/lib/version/regex.pm
@@ -4,7 +4,7 @@ use strict;
use vars qw($VERSION $CLASS $STRICT $LAX);
-$VERSION = 0.9914;
+$VERSION = 0.9916;
#--------------------------------------------------------------------------#
# Version regexp components
diff --git a/cpan/version/t/01base.t b/cpan/version/t/01base.t
index 4c1a23dd49..08e7ad1506 100644
--- a/cpan/version/t/01base.t
+++ b/cpan/version/t/01base.t
@@ -12,7 +12,7 @@ BEGIN {
(File::Spec->splitpath($0))[0,1], 'coretests.pm'
);
require $coretests;
- use_ok('version', 0.9914);
+ use_ok('version', 0.9916);
}
BaseTests("version","new","qv");
diff --git a/cpan/version/t/02derived.t b/cpan/version/t/02derived.t
index ac0dea9130..b2678e8bc5 100644
--- a/cpan/version/t/02derived.t
+++ b/cpan/version/t/02derived.t
@@ -13,7 +13,7 @@ BEGIN {
(File::Spec->splitpath($0))[0,1], 'coretests.pm'
);
require $coretests;
- use_ok("version", 0.9914);
+ use_ok("version", 0.9916);
# If we made it this far, we are ok.
}
diff --git a/cpan/version/t/03require.t b/cpan/version/t/03require.t
index ed437be64f..da1f02e1ad 100644
--- a/cpan/version/t/03require.t
+++ b/cpan/version/t/03require.t
@@ -17,7 +17,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.9914, "Make sure we have the correct class";
+is $version::VERSION, 0.9916, "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 fad9139acf..330ab1a812 100644
--- a/cpan/version/t/05sigdie.t
+++ b/cpan/version/t/05sigdie.t
@@ -14,7 +14,7 @@ BEGIN {
}
BEGIN {
- use version 0.9914;
+ use version 0.9916;
}
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 e9f7187145..4d5a7fbe6a 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.9914);
+ use_ok('version', 0.9916);
}
my $v1 = version->new('1.2');
diff --git a/cpan/version/t/07locale.t b/cpan/version/t/07locale.t
index ee0c91c864..1a4dadf35b 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.9914);
+ use_ok('version', 0.9916);
}
SKIP: {
diff --git a/cpan/version/t/08_corelist.t b/cpan/version/t/08_corelist.t
index d8cd147949..3cc8889cb9 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.9914);
+use_ok("version", 0.9916);
# 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 bb6d3ec443..232a9c0c3d 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.9914);
+use_ok("version", 0.9916);
use Test::More;
BEGIN {