Skip to content

Commit a85359e

Browse files
author
John Peacock
committed
Prep for release
1 parent 4458e5c commit a85359e

File tree

15 files changed

+20
-15
lines changed

15 files changed

+20
-15
lines changed

Makefile.PL

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ sub write_makefile
5252
'parent' => 0.221,
5353
);
5454

55-
WriteMakefile( VERSION => '0.9916',
55+
WriteMakefile( VERSION => '0.9917',
5656
NAME => 'version',
5757
LICENSE => 'perl',
5858
MIN_PERL_VERSION=> 5.006002,

README

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
version 0.9916
1+
version 0.9917
22
==================================
33

44
Object oriented versions for all Perl releases from 5.6.2 onward. Replaces
@@ -26,6 +26,11 @@ There was a bug caused by objects serialized by YAML that will cause Perl
2626
5.10.0 to segfault. As long as some module calls 'use version', then the
2727
replacement code will take effect and Perl will not crash.
2828

29+
Major Changes in 0.9917 - 2016-05-29
30+
=========================================
31+
Fix version::regex captures, resolves:
32+
https://rt.cpan.org/Ticket/Display.html?id=114712
33+
2934
Major Changes in 0.9916 - 2016-03-18
3035
=========================================
3136
Incorporate changes from bleadperl (destined to be 5.24.0)

lib/version.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ if ($] >= 5.015) {
1010

1111
use vars qw(@ISA $VERSION $CLASS $STRICT $LAX *declare *qv);
1212

13-
$VERSION = 0.9916;
13+
$VERSION = 0.9917;
1414
$CLASS = 'version';
1515

1616
# !!!!Delete this next block completely when adding to Perl core!!!!

lib/version/regex.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ use strict;
44

55
use vars qw($VERSION $CLASS $STRICT $LAX);
66

7-
$VERSION = 0.9916;
7+
$VERSION = 0.9917;
88

99
#--------------------------------------------------------------------------#
1010
# Version regexp components

t/00impl-pp.t

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ BEGIN {
1212
(File::Spec->splitpath($0))[0,1], 'coretests.pm'
1313
);
1414
require $coretests;
15-
use_ok('version::vpp', 0.9916);
15+
use_ok('version::vpp', 0.9917);
1616
}
1717

1818
BaseTests("version::vpp","new","qv");

t/01base.t

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ BEGIN {
1212
(File::Spec->splitpath($0))[0,1], 'coretests.pm'
1313
);
1414
require $coretests;
15-
use_ok('version', 0.9916);
15+
use_ok('version', 0.9917);
1616
}
1717

1818
BaseTests("version","new","qv");

t/02derived.t

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ BEGIN {
1313
(File::Spec->splitpath($0))[0,1], 'coretests.pm'
1414
);
1515
require $coretests;
16-
use_ok("version", 0.9916);
16+
use_ok("version", 0.9917);
1717
# If we made it this far, we are ok.
1818
}
1919

t/03require.t

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ BEGIN {
1717
# Don't want to use, because we need to make sure that the import doesn't
1818
# fire just yet (some code does this to avoid importing qv() and delare()).
1919
require_ok("version");
20-
is $version::VERSION, 0.9916, "Make sure we have the correct class";
20+
is $version::VERSION, 0.9917, "Make sure we have the correct class";
2121
ok(!"main"->can("qv"), "We don't have the imported qv()");
2222
ok(!"main"->can("declare"), "We don't have the imported declare()");
2323

t/05sigdie.t

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ BEGIN {
1414
}
1515

1616
BEGIN {
17-
use version 0.9916;
17+
use version 0.9917;
1818
}
1919

2020
pass "Didn't get caught by the wrong DIE handler, which is a good thing";

t/06noop.t

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
use Test::More qw/no_plan/;
88

99
BEGIN {
10-
use_ok('version', 0.9916);
10+
use_ok('version', 0.9917);
1111
}
1212

1313
my $v1 = version->new('1.2');

0 commit comments

Comments
 (0)