Skip to content

Commit

Permalink
updates for dev release 1.221_01
Browse files Browse the repository at this point in the history
  • Loading branch information
wchristian committed Apr 23, 2016
1 parent 9d6babd commit d3a2287
Show file tree
Hide file tree
Showing 98 changed files with 110 additions and 98 deletions.
11 changes: 9 additions & 2 deletions Changes
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,20 @@ Revision history for Perl extension PPI

1.221_01
Summary:
- remove unused PPI::Document->new timeout feature.
- unit tests for many parts, both passing and TODO
- many documentation fixes
- add ->version method to PPI::Statement::Package (WOLFSAGE)
- remove unused PPI::Document->new timeout feature
- removal of Test::NoWarnings
- less uses of List::MoreUtils in favor of List::Util

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

1.220 Tue 11 Nov 2014
Summary:
Expand Down
2 changes: 1 addition & 1 deletion lib/PPI.pm
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ use strict;
# Set the version for CPAN
use vars qw{$VERSION $XS_COMPATIBLE @XS_EXCLUDE};
BEGIN {
$VERSION = '1.220';
$VERSION = '1.221_01';
$XS_COMPATIBLE = '0.845';
@XS_EXCLUDE = ();
}
Expand Down
2 changes: 1 addition & 1 deletion lib/PPI/Cache.pm
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ use PPI::Document ();

use vars qw{$VERSION};
BEGIN {
$VERSION = '1.220';
$VERSION = '1.221_01';
}

use constant VMS => !! ( $^O eq 'VMS' );
Expand Down
2 changes: 1 addition & 1 deletion lib/PPI/Document.pm
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ use overload '""' => 'content';

use vars qw{$VERSION @ISA $errstr};
BEGIN {
$VERSION = '1.220';
$VERSION = '1.221_01';
@ISA = 'PPI::Node';
$errstr = '';
}
Expand Down
2 changes: 1 addition & 1 deletion lib/PPI/Document/File.pm
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ use PPI::Document ();

use vars qw{$VERSION @ISA};
BEGIN {
$VERSION = '1.220';
$VERSION = '1.221_01';
@ISA = 'PPI::Document';
}

Expand Down
2 changes: 1 addition & 1 deletion lib/PPI/Document/Fragment.pm
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ use PPI::Document ();

use vars qw{$VERSION @ISA};
BEGIN {
$VERSION = '1.220';
$VERSION = '1.221_01';
@ISA = 'PPI::Document';
}

Expand Down
2 changes: 1 addition & 1 deletion lib/PPI/Document/Normalized.pm
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ use PPI::Util ();

use vars qw{$VERSION};
BEGIN {
$VERSION = '1.220';
$VERSION = '1.221_01';
}

use overload 'bool' => \&PPI::Util::TRUE;
Expand Down
2 changes: 1 addition & 1 deletion lib/PPI/Dumper.pm
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ use Params::Util qw{_INSTANCE};

use vars qw{$VERSION};
BEGIN {
$VERSION = '1.220';
$VERSION = '1.221_01';
}


Expand Down
2 changes: 1 addition & 1 deletion lib/PPI/Element.pm
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ use PPI::Node ();

use vars qw{$VERSION $errstr %_PARENT};
BEGIN {
$VERSION = '1.220';
$VERSION = '1.221_01';
$errstr = '';

# Master Child -> Parent index
Expand Down
2 changes: 1 addition & 1 deletion lib/PPI/Exception.pm
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ use Params::Util qw{_INSTANCE};

use vars qw{$VERSION};
BEGIN {
$VERSION = '1.220';
$VERSION = '1.221_01';
}


Expand Down
2 changes: 1 addition & 1 deletion lib/PPI/Exception/ParserRejection.pm
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ use PPI::Exception ();

use vars qw{$VERSION @ISA};
BEGIN {
$VERSION = '1.220';
$VERSION = '1.221_01';
@ISA = 'PPI::Exception';
}

Expand Down
2 changes: 1 addition & 1 deletion lib/PPI/Find.pm
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ use Params::Util qw{_INSTANCE};

use vars qw{$VERSION};
BEGIN {
$VERSION = '1.220';
$VERSION = '1.221_01';
}


Expand Down
2 changes: 1 addition & 1 deletion lib/PPI/Lexer.pm
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ use PPI::Exception ();

use vars qw{$VERSION $errstr *_PARENT %ROUND %RESOLVE};
BEGIN {
$VERSION = '1.220';
$VERSION = '1.221_01';
$errstr = '';

# Faster than having another method call just
Expand Down
2 changes: 1 addition & 1 deletion lib/PPI/Node.pm
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ use PPI::Element ();

use vars qw{$VERSION @ISA *_PARENT};
BEGIN {
$VERSION = '1.220';
$VERSION = '1.221_01';
@ISA = 'PPI::Element';
*_PARENT = *PPI::Element::_PARENT;
}
Expand Down
2 changes: 1 addition & 1 deletion lib/PPI/Normal.pm
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ use PPI::Document::Normalized ();

use vars qw{$VERSION %LAYER};
BEGIN {
$VERSION = '1.220';
$VERSION = '1.221_01';

# Registered function store
%LAYER = (
Expand Down
2 changes: 1 addition & 1 deletion lib/PPI/Normal/Standard.pm
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ use strict;

use vars qw{$VERSION};
BEGIN {
$VERSION = '1.220';
$VERSION = '1.221_01';
}


Expand Down
2 changes: 1 addition & 1 deletion lib/PPI/Statement.pm
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ use PPI::Exception ();

use vars qw{$VERSION @ISA *_PARENT};
BEGIN {
$VERSION = '1.220';
$VERSION = '1.221_01';
@ISA = 'PPI::Node';
*_PARENT = *PPI::Element::_PARENT;
}
Expand Down
2 changes: 1 addition & 1 deletion lib/PPI/Statement/Break.pm
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ use PPI::Statement ();

use vars qw{$VERSION @ISA};
BEGIN {
$VERSION = '1.220';
$VERSION = '1.221_01';
@ISA = 'PPI::Statement';
}

Expand Down
2 changes: 1 addition & 1 deletion lib/PPI/Statement/Compound.pm
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ use PPI::Statement ();

use vars qw{$VERSION @ISA %TYPES};
BEGIN {
$VERSION = '1.220';
$VERSION = '1.221_01';
@ISA = 'PPI::Statement';

# Keyword type map
Expand Down
2 changes: 1 addition & 1 deletion lib/PPI/Statement/Data.pm
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ use PPI::Statement ();

use vars qw{$VERSION @ISA};
BEGIN {
$VERSION = '1.220';
$VERSION = '1.221_01';
@ISA = 'PPI::Statement';
}

Expand Down
2 changes: 1 addition & 1 deletion lib/PPI/Statement/End.pm
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ use PPI::Statement ();

use vars qw{$VERSION @ISA};
BEGIN {
$VERSION = '1.220';
$VERSION = '1.221_01';
@ISA = 'PPI::Statement';
}

Expand Down
2 changes: 1 addition & 1 deletion lib/PPI/Statement/Expression.pm
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ use PPI::Statement ();

use vars qw{$VERSION @ISA};
BEGIN {
$VERSION = '1.220';
$VERSION = '1.221_01';
@ISA = 'PPI::Statement';
}

Expand Down
2 changes: 1 addition & 1 deletion lib/PPI/Statement/Given.pm
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ use PPI::Statement ();

use vars qw{$VERSION @ISA};
BEGIN {
$VERSION = '1.220';
$VERSION = '1.221_01';
@ISA = 'PPI::Statement';
}

Expand Down
2 changes: 1 addition & 1 deletion lib/PPI/Statement/Include.pm
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ use PPI::Statement::Include::Perl6 ();

use vars qw{$VERSION @ISA};
BEGIN {
$VERSION = '1.220';
$VERSION = '1.221_01';
@ISA = 'PPI::Statement';
}

Expand Down
2 changes: 1 addition & 1 deletion lib/PPI/Statement/Include/Perl6.pm
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ use PPI::Statement::Include ();

use vars qw{$VERSION @ISA};
BEGIN {
$VERSION = '1.220';
$VERSION = '1.221_01';
@ISA = 'PPI::Statement::Include';
}

Expand Down
2 changes: 1 addition & 1 deletion lib/PPI/Statement/Null.pm
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ use PPI::Statement ();

use vars qw{$VERSION @ISA};
BEGIN {
$VERSION = '1.220';
$VERSION = '1.221_01';
@ISA = 'PPI::Statement';
}

Expand Down
2 changes: 1 addition & 1 deletion lib/PPI/Statement/Package.pm
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ use PPI::Statement ();

use vars qw{$VERSION @ISA};
BEGIN {
$VERSION = '1.220';
$VERSION = '1.221_01';
@ISA = 'PPI::Statement';
}

Expand Down
2 changes: 1 addition & 1 deletion lib/PPI/Statement/Scheduled.pm
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ use PPI::Statement::Sub ();

use vars qw{$VERSION @ISA};
BEGIN {
$VERSION = '1.220';
$VERSION = '1.221_01';
@ISA = 'PPI::Statement::Sub';
}

Expand Down
2 changes: 1 addition & 1 deletion lib/PPI/Statement/Sub.pm
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ use PPI::Statement ();

use vars qw{$VERSION @ISA};
BEGIN {
$VERSION = '1.220';
$VERSION = '1.221_01';
@ISA = 'PPI::Statement';
}

Expand Down
2 changes: 1 addition & 1 deletion lib/PPI/Statement/Unknown.pm
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ use PPI::Statement ();

use vars qw{$VERSION @ISA};
BEGIN {
$VERSION = '1.220';
$VERSION = '1.221_01';
@ISA = 'PPI::Statement';
}

Expand Down
2 changes: 1 addition & 1 deletion lib/PPI/Statement/UnmatchedBrace.pm
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ use PPI::Statement ();

use vars qw{$VERSION @ISA};
BEGIN {
$VERSION = '1.220';
$VERSION = '1.221_01';
@ISA = 'PPI::Statement';
}

Expand Down
2 changes: 1 addition & 1 deletion lib/PPI/Statement/Variable.pm
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ use PPI::Statement::Expression ();

use vars qw{$VERSION @ISA};
BEGIN {
$VERSION = '1.220';
$VERSION = '1.221_01';
@ISA = 'PPI::Statement::Expression';
}

Expand Down
2 changes: 1 addition & 1 deletion lib/PPI/Statement/When.pm
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ use PPI::Statement ();

use vars qw{$VERSION @ISA};
BEGIN {
$VERSION = '1.220';
$VERSION = '1.221_01';
@ISA = 'PPI::Statement';
}

Expand Down
2 changes: 1 addition & 1 deletion lib/PPI/Structure.pm
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ use PPI::Exception ();

use vars qw{$VERSION @ISA *_PARENT};
BEGIN {
$VERSION = '1.220';
$VERSION = '1.221_01';
@ISA = 'PPI::Node';
*_PARENT = *PPI::Element::_PARENT;
}
Expand Down
2 changes: 1 addition & 1 deletion lib/PPI/Structure/Block.pm
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ use PPI::Structure ();

use vars qw{$VERSION @ISA};
BEGIN {
$VERSION = '1.220';
$VERSION = '1.221_01';
@ISA = 'PPI::Structure';
}

Expand Down
2 changes: 1 addition & 1 deletion lib/PPI/Structure/Condition.pm
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ use PPI::Structure ();

use vars qw{$VERSION @ISA};
BEGIN {
$VERSION = '1.220';
$VERSION = '1.221_01';
@ISA = 'PPI::Structure';
}

Expand Down
2 changes: 1 addition & 1 deletion lib/PPI/Structure/Constructor.pm
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ use PPI::Structure ();

use vars qw{$VERSION @ISA};
BEGIN {
$VERSION = '1.220';
$VERSION = '1.221_01';
@ISA = 'PPI::Structure';
}

Expand Down
2 changes: 1 addition & 1 deletion lib/PPI/Structure/For.pm
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ use PPI::Structure ();

use vars qw{$VERSION @ISA};
BEGIN {
$VERSION = '1.220';
$VERSION = '1.221_01';
@ISA = 'PPI::Structure';
}

Expand Down
2 changes: 1 addition & 1 deletion lib/PPI/Structure/Given.pm
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ use PPI::Structure ();

use vars qw{$VERSION @ISA};
BEGIN {
$VERSION = '1.220';
$VERSION = '1.221_01';
@ISA = 'PPI::Structure';
}

Expand Down
2 changes: 1 addition & 1 deletion lib/PPI/Structure/List.pm
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ use PPI::Structure ();

use vars qw{$VERSION @ISA};
BEGIN {
$VERSION = '1.220';
$VERSION = '1.221_01';
@ISA = 'PPI::Structure';
}

Expand Down
2 changes: 1 addition & 1 deletion lib/PPI/Structure/Subscript.pm
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ use PPI::Structure ();

use vars qw{$VERSION @ISA};
BEGIN {
$VERSION = '1.220';
$VERSION = '1.221_01';
@ISA = 'PPI::Structure';
}

Expand Down
2 changes: 1 addition & 1 deletion lib/PPI/Structure/Unknown.pm
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ use PPI::Structure ();

use vars qw{$VERSION @ISA};
BEGIN {
$VERSION = '1.220';
$VERSION = '1.221_01';
@ISA = 'PPI::Structure';
}

Expand Down
Loading

0 comments on commit d3a2287

Please sign in to comment.