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 2a4b7cf
Show file tree
Hide file tree
Showing 13 changed files with 680 additions and 605 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
2 changes: 1 addition & 1 deletion t/porting/customized.dat
Original file line number Diff line number Diff line change
Expand Up @@ -17,5 +17,5 @@ Time::Piece cpan/Time-Piece/Piece.pm 8cec8b66183ceddb9bf2b6af35dcdd345bc9adfa
Time::Piece cpan/Time-Piece/Piece.xs 543152540ee17788a638b2c5746b86c3d04401d1
Win32API::File cpan/Win32API-File/File.pm 8fd212857f821cb26648878b96e57f13bf21b99e
Win32API::File cpan/Win32API-File/File.xs beb870fed4490d2faa547b4a8576b8d64d1d27c5
version cpan/version/lib/version.pm a963b513cf812bd7f4d28b3422efd9904e70a34c
version cpan/version/lib/version.pm 8080cfe1fb21d5248c8ff5133b298d249d11e8e8
version cpan/version/t/07locale.t b1cceee71544ce6b6c926d06656a52aabbfe8abf
Loading

0 comments on commit 2a4b7cf

Please sign in to comment.