Skip to content

Commit a7097fc

Browse files
author
John Peacock
committed
flow: Merged <hotfix> 'RT-125042' to <develop> ('develop').
2 parents e77439a + 743109a commit a7097fc

File tree

17 files changed

+49
-37
lines changed

17 files changed

+49
-37
lines changed

CHANGES

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,11 @@ This is not a complete list of changes. See repository for full details:
1111
* Improve docs regarding trailing zeros
1212
https://rt.cpan.org/Ticket/Display.html?id=122858
1313

14+
0.9920 - 2018-04-08
15+
16+
* Backwards compatible locale handling
17+
https://rt.cpan.org/Ticket/Display.html?id=125042
18+
1419
0.9919 - 2018-04-08
1520

1621
* Core improvements to locale handling

Makefile.PL

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

54-
WriteMakefile( VERSION => '0.9919',
54+
WriteMakefile( VERSION => '0.9920',
5555
NAME => 'version',
5656
LICENSE => 'perl',
5757
MIN_PERL_VERSION=> 5.006002,

README

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
version 0.9919
1+
version 0.9920
22
==================================
33

44
Object oriented versions for all Perl releases from 5.6.2 onward. Replaces

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.9919;
13+
$VERSION = 0.9920;
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
@@ -8,7 +8,7 @@ use vars qw(
88
$LAX_DECIMAL_VERSION $LAX_DOTTED_DECIMAL_VERSION
99
);
1010

11-
$VERSION = 0.9919;
11+
$VERSION = 0.9920;
1212

1313
#--------------------------------------------------------------------------#
1414
# Version regexp components

t/00impl-pp.t

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ BEGIN {
1414
)
1515
);
1616
require $coretests;
17-
use_ok('version::vpp', 0.9919);
17+
use_ok('version::vpp', 0.9920);
1818
}
1919

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

t/01base.t

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ BEGIN {
1414
)
1515
);
1616
require $coretests;
17-
use_ok('version', 0.9919);
17+
use_ok('version', 0.9920);
1818
}
1919

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

t/02derived.t

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ BEGIN {
1515
)
1616
);
1717
require $coretests;
18-
use_ok("version", 0.9919);
18+
use_ok("version", 0.9920);
1919
# If we made it this far, we are ok.
2020
}
2121

t/03require.t

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

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.9919;
17+
use version 0.9920;
1818
}
1919

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

0 commit comments

Comments
 (0)