Skip to content

Commit

Permalink
Bump to 0.9932
Browse files Browse the repository at this point in the history
  • Loading branch information
Leont committed Apr 28, 2024
1 parent db8069d commit d666125
Show file tree
Hide file tree
Showing 16 changed files with 16 additions and 15 deletions.
1 change: 1 addition & 0 deletions CHANGES
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ This is not a complete list of changes. See repository for full details:

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

0.9932
* Add to_decimal and to_dotted_decimal methods
* Add tuple and from_tuple methods

Expand Down
2 changes: 1 addition & 1 deletion Makefile.PL
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ sub write_makefile
'base' => 0,
);

WriteMakefile( VERSION => '0.9931',
WriteMakefile( VERSION => '0.9932',
NAME => 'version',
LICENSE => 'perl',
MIN_PERL_VERSION=> 5.006002,
Expand Down
2 changes: 1 addition & 1 deletion README
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
version 0.9931
version 0.9932
==================================

Object oriented versions for all Perl releases from 5.6.2 onward. Replaces
Expand Down
2 changes: 1 addition & 1 deletion lib/version.pm
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ if ($] >= 5.015) {
warnings::register_categories(qw/version/);
}

our $VERSION = '0.9931';
our $VERSION = '0.9932';
our $CLASS = 'version';
our (@ISA, $STRICT, $LAX);

Expand Down
2 changes: 1 addition & 1 deletion lib/version/regex.pm
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ package version::regex;

use strict;

our $VERSION = '0.9931';
our $VERSION = '0.9932';

#--------------------------------------------------------------------------#
# Version regexp components
Expand Down
2 changes: 1 addition & 1 deletion t/00impl-pp.t
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ BEGIN {
)
);
require $coretests;
use_ok('version::vpp', 0.9931);
use_ok('version::vpp', 0.9932);
}

BaseTests("version::vpp","new","qv");
Expand Down
2 changes: 1 addition & 1 deletion t/01base.t
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ BEGIN {
)
);
require $coretests;
use_ok('version', 0.9931);
use_ok('version', 0.9932);
}

BaseTests("version","new","qv");
Expand Down
2 changes: 1 addition & 1 deletion t/02derived.t
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ BEGIN {
)
);
require $coretests;
use_ok("version", 0.9931);
use_ok("version", 0.9932);
# If we made it this far, we are ok.
}

Expand Down
2 changes: 1 addition & 1 deletion t/03require.t
Original file line number Diff line number Diff line change
Expand Up @@ -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.9931', "Make sure we have the correct class";
is $version::VERSION, '0.9932', "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()");

Expand Down
2 changes: 1 addition & 1 deletion t/05sigdie.t
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ BEGIN {
}

BEGIN {
use version 0.9931;
use version 0.9932;
}

pass "Didn't get caught by the wrong DIE handler, which is a good thing";
2 changes: 1 addition & 1 deletion t/06noop.t
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
use Test::More qw/no_plan/;

BEGIN {
use_ok('version', 0.9931);
use_ok('version', 0.9932);
}

my $v1 = 'version'->new('1.2');
Expand Down
2 changes: 1 addition & 1 deletion t/07locale.t
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ use Test::More tests => 8;
use Config;

BEGIN {
use_ok('version', 0.9931);
use_ok('version', 0.9932);
}

sub radix { # Returns the radix character for the current locale.
Expand Down
2 changes: 1 addition & 1 deletion t/08_corelist.t
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
#########################

use Test::More tests => 3;
use_ok("version", 0.9931);
use_ok("version", 0.9932);

# do strict lax tests in a sub to isolate a package to test importing
SKIP: {
Expand Down
2 changes: 1 addition & 1 deletion t/09_list_util.t
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
#########################

use strict;
use_ok("version", 0.9931);
use_ok("version", 0.9932);
use Test::More;

BEGIN {
Expand Down
2 changes: 1 addition & 1 deletion vperl/vpp.pm
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ use warnings::register;

use Config;

our $VERSION = '0.9931';
our $VERSION = '0.9932';
our $CLASS = 'version::vpp';
our ($LAX, $STRICT, $WARN_CATEGORY);

Expand Down
2 changes: 1 addition & 1 deletion vutil/lib/version/vxs.pm
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ package version::vxs;
use v5.10;
use strict;

our $VERSION = '0.9931';
our $VERSION = '0.9932';
our $CLASS = 'version::vxs';
our @ISA;

Expand Down

0 comments on commit d666125

Please sign in to comment.