Skip to content
This repository was archived by the owner on Jun 1, 2023. It is now read-only.

Commit bd7dd8a

Browse files
committed
parent-0.237
use vars => our.
1 parent 29e241a commit bd7dd8a

File tree

7 files changed

+12
-7
lines changed

7 files changed

+12
-7
lines changed

Porting/Maintainers.pl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1124,7 +1124,7 @@ package Maintainers;
11241124
},
11251125

11261126
'parent' => {
1127-
'DISTRIBUTION' => 'CORION/parent-0.236.tar.gz',
1127+
'DISTRIBUTION' => 'CORION/parent-0.237.tar.gz',
11281128
'FILES' => q[cpan/parent],
11291129
'EXCLUDED' => [qr{^xt/}],
11301130
},

cpan/parent/lib/parent.pm

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
package parent;
22
use strict;
3-
use vars qw($VERSION);
4-
$VERSION = '0.236';
3+
4+
our $VERSION = '0.237';
55

66
sub import {
77
my $class = shift;
@@ -109,7 +109,7 @@ Rafaël Garcia-Suarez, Bart Lateur, Max Maischein, Anno Siegel, Michael Schwern
109109
110110
Max Maischein C< corion@cpan.org >
111111
112-
Copyright (c) 2007-10 Max Maischein C<< <corion@cpan.org> >>
112+
Copyright (c) 2007-2017 Max Maischein C<< <corion@cpan.org> >>
113113
Based on the idea of C<base.pm>, which was introduced with Perl 5.004_04.
114114
115115
=head1 LICENSE

cpan/parent/t/parent-pmc.t

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ plan skip_all => 'Perl is built with PERL_DISABLE_PMC' unless $pmc;
3535

3636
plan tests => 3;
3737

38-
use vars qw($got_here);
38+
our $got_here;
3939

4040
my $res = eval q{
4141
package MyTest;

cpan/parent/t/parent-returns-false.t

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ use strict;
1111
use Test::More tests => 2;
1212
use lib 't/lib';
1313

14-
use vars qw($got_here);
14+
our $got_here;
1515

1616
my $res = eval q{
1717
package MyTest;

cpan/parent/t/parent.t

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ use_ok('parent');
1616

1717
package No::Version;
1818

19-
use vars qw($Foo);
19+
our $Foo;
2020
sub VERSION { 42 }
2121

2222
package Test::Version;

dist/Module-CoreList/lib/Module/CoreList.pm

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17770,6 +17770,7 @@ our %delta :const = (
1777017770
'Math::BigInt::Lib' => '1.999814',
1777117771
'Math::BigRat' => '0.2614',
1777217772
'Net::Ping' => '2.70',
17773+
'parent' => '0.237',
1777317774
'Pod::Man' => '4.11',
1777417775
'Pod::ParseLink' => '4.11',
1777517776
'Pod::Text' => '4.11',

pod/perlcdelta.pod

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -346,6 +346,10 @@ better icmpv6 support.
346346

347347
Fixes for ldlibpthname from 2.71
348348

349+
=item L<parent> 0.237
350+
351+
use vars => our.
352+
349353
=item L<Pod::Man> 4.11
350354

351355
Various upstream changes,

0 commit comments

Comments
 (0)