Skip to content

Commit 370d081

Browse files
committed
updates for dev release 1.221_01
1 parent 9d6babd commit 370d081

Some content is hidden

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

98 files changed

+109
-98
lines changed

Changes

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,19 @@ Revision history for Perl extension PPI
22

33
1.221_01
44
Summary:
5-
- remove unused PPI::Document->new timeout feature.
5+
- unit tests for many parts, both passing and TODO
6+
- many documentation fixes
7+
- remove unused PPI::Document->new timeout feature
8+
- removal of Test::NoWarnings
9+
- less uses of List::MoreUtils in favor of List::Util
610

711
Details:
812
- Remove undocumented, non-working 'timeout' attribute to
913
Document->new, including HAVE_ALARM and
1014
PPI::Exception::ParserTimeout. (GitHub #140) (MOREGAN)
11-
- Unit tests for PPI::Token::Symbol (GitHub #148) (MOREGAN)
15+
- first cut of a travis configuration
16+
- do hex number matching with [[:xdigit:]]
17+
- some readability improvements on the code of HereDoc.pm
1218

1319
1.220 Tue 11 Nov 2014
1420
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.220';
11+
$VERSION = '1.221_01';
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.220';
59+
$VERSION = '1.221_01';
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.220';
80+
$VERSION = '1.221_01';
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.220';
27+
$VERSION = '1.221_01';
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.220';
26+
$VERSION = '1.221_01';
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.220';
50+
$VERSION = '1.221_01';
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.220';
40+
$VERSION = '1.221_01';
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.220';
34+
$VERSION = '1.221_01';
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.220';
29+
$VERSION = '1.221_01';
3030
}
3131

3232

0 commit comments

Comments
 (0)