Skip to content

Commit

Permalink
bump version.pm to 0.9930
Browse files Browse the repository at this point in the history
  • Loading branch information
leonerd committed Sep 20, 2023
1 parent 6281b77 commit 84d7db9
Show file tree
Hide file tree
Showing 12 changed files with 679 additions and 604 deletions.
3 changes: 2 additions & 1 deletion Porting/Maintainers.pl
Original file line number Diff line number Diff line change
Expand Up @@ -1296,7 +1296,8 @@ package Maintainers;
},

'version' => {
'DISTRIBUTION' => 'LEONT/version-0.9929.tar.gz',
'DISTRIBUTION' => 'LEONT/version-0.9930.tar.gz',
'SYNCINFO' => 'LeoNerd on Mon Sep 18 21:49:09 2023',
'FILES' => q[cpan/version vutil.c vutil.h vxs.inc],
'EXCLUDED' => [
qr{^vutil/lib/},
Expand Down
2 changes: 1 addition & 1 deletion cpan/version/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.9929;
our $VERSION = '0.9930';
our $CLASS = 'version';
our (@ISA, $STRICT, $LAX);

Expand Down
2 changes: 1 addition & 1 deletion cpan/version/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.9929;
our $VERSION = '0.9930';

#--------------------------------------------------------------------------#
# Version regexp components
Expand Down
2 changes: 1 addition & 1 deletion cpan/version/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.9929);
use_ok('version', 0.9930);
}

BaseTests("version","new","qv");
Expand Down
2 changes: 1 addition & 1 deletion cpan/version/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.9929);
use_ok("version", 0.9930);
# If we made it this far, we are ok.
}

Expand Down
2 changes: 1 addition & 1 deletion cpan/version/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.9929, "Make sure we have the correct class";
is $version::VERSION, '0.9930', "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 cpan/version/t/05sigdie.t
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ BEGIN {
}

BEGIN {
use version 0.9929;
use version 0.9930;
}

pass "Didn't get caught by the wrong DIE handler, which is a good thing";
2 changes: 1 addition & 1 deletion cpan/version/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.9929);
use_ok('version', 0.9930);
}

my $v1 = 'version'->new('1.2');
Expand Down
2 changes: 1 addition & 1 deletion cpan/version/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.9929);
use_ok("version", 0.9930);

# do strict lax tests in a sub to isolate a package to test importing
SKIP: {
Expand Down
2 changes: 1 addition & 1 deletion cpan/version/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.9929);
use_ok("version", 0.9930);
use Test::More;

BEGIN {
Expand Down
2 changes: 1 addition & 1 deletion cpan/version/t/coretests.pm
Original file line number Diff line number Diff line change
Expand Up @@ -570,7 +570,7 @@ SKIP: {
or diag $@;
$_112478::VERSION = 1;
eval { _112478->VERSION(9e99) };
unlike $@, qr/panic/, '->VERSION(9e99) does not panic';
unlike $@, qr/^panic: /, '->VERSION(9e99) does not panic';
}

{ # https://rt.cpan.org/Ticket/Display.html?id=79259
Expand Down
Loading

0 comments on commit 84d7db9

Please sign in to comment.