Skip to content

Commit c1f5238

Browse files
committed
updates for release 1.232
1 parent 66bce47 commit c1f5238

Some content is hidden

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

99 files changed

+109
-99
lines changed

Changes

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,19 @@
11
Revision history for Perl extension PPI
22

3+
1.232 Sun 20 June 2017
4+
Summary:
5+
- add Changes entries forgotten in 1.230
6+
7+
1.230 Sun 20 June 2017
8+
Summary:
9+
- remove temporary fix introduced in 1.226
10+
- prevent possible regex on undefined scalar in
11+
__current_token_is_forced_word
12+
313
1.228 Sun 20 June 2017
414
Summary:
515
- keep PPI::Dumper from breaking Perl::Critic under cperl 5.27
6-
(RURBAN)
16+
(RURBAN)
717

818
1.226 Sun 20 June 2017
919
Summary:

lib/PPI.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ use strict;
88
# Set the version for CPAN
99
use vars qw{$VERSION $XS_COMPATIBLE @XS_EXCLUDE};
1010
BEGIN {
11-
$VERSION = '1.228';
11+
$VERSION = '1.232';
1212
$XS_COMPATIBLE = '0.845';
1313
@XS_EXCLUDE = ();
1414
}

lib/PPI/Cache.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ use PPI::Document ();
5656

5757
use vars qw{$VERSION};
5858
BEGIN {
59-
$VERSION = '1.228';
59+
$VERSION = '1.232';
6060
}
6161

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

lib/PPI/Document.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ use overload '""' => 'content';
7777

7878
use vars qw{$VERSION @ISA $errstr};
7979
BEGIN {
80-
$VERSION = '1.228';
80+
$VERSION = '1.232';
8181
@ISA = 'PPI::Node';
8282
$errstr = '';
8383
}

lib/PPI/Document/File.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ use PPI::Document ();
2424

2525
use vars qw{$VERSION @ISA};
2626
BEGIN {
27-
$VERSION = '1.228';
27+
$VERSION = '1.232';
2828
@ISA = 'PPI::Document';
2929
}
3030

lib/PPI/Document/Fragment.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ use PPI::Document ();
2323

2424
use vars qw{$VERSION @ISA};
2525
BEGIN {
26-
$VERSION = '1.228';
26+
$VERSION = '1.232';
2727
@ISA = 'PPI::Document';
2828
}
2929

lib/PPI/Document/Normalized.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ use PPI::Util ();
4747

4848
use vars qw{$VERSION};
4949
BEGIN {
50-
$VERSION = '1.228';
50+
$VERSION = '1.232';
5151
}
5252

5353
use overload 'bool' => \&PPI::Util::TRUE;

lib/PPI/Dumper.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ use Params::Util qw{_INSTANCE};
3737

3838
use vars qw{$VERSION};
3939
BEGIN {
40-
$VERSION = '1.228';
40+
$VERSION = '1.232';
4141
}
4242

4343

lib/PPI/Element.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ use PPI::Node ();
3131

3232
use vars qw{$VERSION $errstr %_PARENT};
3333
BEGIN {
34-
$VERSION = '1.228';
34+
$VERSION = '1.232';
3535
$errstr = '';
3636

3737
# Master Child -> Parent index

lib/PPI/Exception.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ use Params::Util qw{_INSTANCE};
2626

2727
use vars qw{$VERSION};
2828
BEGIN {
29-
$VERSION = '1.228';
29+
$VERSION = '1.232';
3030
}
3131

3232

0 commit comments

Comments
 (0)