Skip to content

Commit fc4ca9b

Browse files
committed
updates for dev release 1.237_001
1 parent 902d409 commit fc4ca9b

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

100 files changed

+110
-99
lines changed

Changes

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,16 @@
11
Revision history for Perl extension PPI
22

3+
1.237_001 Wed 15 Nov 2017
4+
Summary:
5+
- support postfix dereference
6+
- remove dependencies on vars, base and List::MoreUtils
7+
- reduce globals and cross-package variables
8+
- make xt/api.t skip/run properly
9+
10+
Details:
11+
- convert many cross-package var accesses to var imports
12+
- convert several unnecessary globals to local variables
13+
314
1.236 Thu 22 June 2017
415
Summary:
516
- prevent Node->child from proceeding without a valid argument

lib/PPI.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ use 5.006;
66
use strict;
77

88
# Set the version for CPAN
9-
our $VERSION = '1.236';
9+
our $VERSION = '1.237_001';
1010

1111
our ( $XS_COMPATIBLE, @XS_EXCLUDE ) = ( '0.845' );
1212

lib/PPI/Cache.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ use Digest::MD5 ();
5454
use Params::Util qw{_INSTANCE _SCALAR};
5555
use PPI::Document ();
5656

57-
our $VERSION = '1.236';
57+
our $VERSION = '1.237_001';
5858

5959
use constant VMS => !! ( $^O eq 'VMS' );
6060

lib/PPI/Document.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ use PPI::Node ();
7575
use overload 'bool' => \&PPI::Util::TRUE;
7676
use overload '""' => 'content';
7777

78-
our $VERSION = '1.236';
78+
our $VERSION = '1.237_001';
7979

8080
our ( $errstr, @ISA ) = ( "", "PPI::Node" );
8181

lib/PPI/Document/File.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ use Carp ();
2222
use Params::Util qw{_STRING _INSTANCE};
2323
use PPI::Document ();
2424

25-
our $VERSION = '1.236';
25+
our $VERSION = '1.237_001';
2626

2727
our @ISA = 'PPI::Document';
2828

lib/PPI/Document/Fragment.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ within it, and it does not represent a scope.
2121
use strict;
2222
use PPI::Document ();
2323

24-
our $VERSION = '1.236';
24+
our $VERSION = '1.237_001';
2525

2626
our @ISA = 'PPI::Document';
2727

lib/PPI/Document/Normalized.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ use Scalar::Util qw{refaddr reftype blessed};
4545
use Params::Util qw{_INSTANCE _ARRAY};
4646
use PPI::Util ();
4747

48-
our $VERSION = '1.236';
48+
our $VERSION = '1.237_001';
4949

5050
use overload 'bool' => \&PPI::Util::TRUE;
5151
use overload '==' => 'equal';

lib/PPI/Dumper.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ generate the dump content itself.
3535
use strict;
3636
use Params::Util qw{_INSTANCE};
3737

38-
our $VERSION = '1.236';
38+
our $VERSION = '1.237_001';
3939

4040

4141

lib/PPI/Element.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ use PPI::Util ();
3030
use PPI::Node ();
3131
use PPI::Singletons '%_PARENT';
3232

33-
our $VERSION = '1.236';
33+
our $VERSION = '1.237_001';
3434

3535
our $errstr = "";
3636

lib/PPI/Exception.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ of this class.
2424
use strict;
2525
use Params::Util qw{_INSTANCE};
2626

27-
our $VERSION = '1.236';
27+
our $VERSION = '1.237_001';
2828

2929

3030
=head1 METHODS

0 commit comments

Comments
 (0)