Skip to content

Commit d666125

Browse files
committed
Bump to 0.9932
1 parent db8069d commit d666125

16 files changed

+16
-15
lines changed

CHANGES

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ This is not a complete list of changes. See repository for full details:
44

55
https://github.com/Perl/version.pm
66

7+
0.9932
78
* Add to_decimal and to_dotted_decimal methods
89
* Add tuple and from_tuple methods
910

Makefile.PL

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

55-
WriteMakefile( VERSION => '0.9931',
55+
WriteMakefile( VERSION => '0.9932',
5656
NAME => 'version',
5757
LICENSE => 'perl',
5858
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.9931
1+
version 0.9932
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
@@ -8,7 +8,7 @@ if ($] >= 5.015) {
88
warnings::register_categories(qw/version/);
99
}
1010

11-
our $VERSION = '0.9931';
11+
our $VERSION = '0.9932';
1212
our $CLASS = 'version';
1313
our (@ISA, $STRICT, $LAX);
1414

lib/version/regex.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ package version::regex;
22

33
use strict;
44

5-
our $VERSION = '0.9931';
5+
our $VERSION = '0.9932';
66

77
#--------------------------------------------------------------------------#
88
# 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.9931);
17+
use_ok('version::vpp', 0.9932);
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.9931);
17+
use_ok('version', 0.9932);
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.9931);
18+
use_ok("version", 0.9932);
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.9931', "Make sure we have the correct class";
22+
is $version::VERSION, '0.9932', "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.9931;
17+
use version 0.9932;
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.9931);
10+
use_ok('version', 0.9932);
1111
}
1212

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

t/07locale.t

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ use Test::More tests => 8;
1111
use Config;
1212

1313
BEGIN {
14-
use_ok('version', 0.9931);
14+
use_ok('version', 0.9932);
1515
}
1616

1717
sub radix { # Returns the radix character for the current locale.

t/08_corelist.t

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
#########################
66

77
use Test::More tests => 3;
8-
use_ok("version", 0.9931);
8+
use_ok("version", 0.9932);
99

1010
# do strict lax tests in a sub to isolate a package to test importing
1111
SKIP: {

t/09_list_util.t

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
#########################
55

66
use strict;
7-
use_ok("version", 0.9931);
7+
use_ok("version", 0.9932);
88
use Test::More;
99

1010
BEGIN {

vperl/vpp.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ use warnings::register;
123123

124124
use Config;
125125

126-
our $VERSION = '0.9931';
126+
our $VERSION = '0.9932';
127127
our $CLASS = 'version::vpp';
128128
our ($LAX, $STRICT, $WARN_CATEGORY);
129129

vutil/lib/version/vxs.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ package version::vxs;
44
use v5.10;
55
use strict;
66

7-
our $VERSION = '0.9931';
7+
our $VERSION = '0.9932';
88
our $CLASS = 'version::vxs';
99
our @ISA;
1010

0 commit comments

Comments
 (0)