Skip to content

Commit

Permalink
updates for release 1.232
Browse files Browse the repository at this point in the history
  • Loading branch information
wchristian committed Jun 21, 2017
1 parent 66bce47 commit 9360baf
Show file tree
Hide file tree
Showing 99 changed files with 109 additions and 99 deletions.
12 changes: 11 additions & 1 deletion Changes
Original file line number Diff line number Diff line change
@@ -1,9 +1,19 @@
Revision history for Perl extension PPI

1.232 Sun 21 June 2017
Summary:
- add Changes entries forgotten in 1.230

1.230 Sun 21 June 2017
Summary:
- remove temporary fix introduced in 1.226
- prevent possible regex on undefined scalar in
__current_token_is_forced_word

1.228 Sun 20 June 2017
Summary:
- keep PPI::Dumper from breaking Perl::Critic under cperl 5.27
(RURBAN)
(RURBAN)

1.226 Sun 20 June 2017
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.228';
$VERSION = '1.232';
$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.228';
$VERSION = '1.232';
}

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.228';
$VERSION = '1.232';
@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.228';
$VERSION = '1.232';
@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.228';
$VERSION = '1.232';
@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.228';
$VERSION = '1.232';
}

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.228';
$VERSION = '1.232';
}


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.228';
$VERSION = '1.232';
$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.228';
$VERSION = '1.232';
}


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.228';
$VERSION = '1.232';
@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.228';
$VERSION = '1.232';
}


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.228';
$VERSION = '1.232';
$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.228';
$VERSION = '1.232';
@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.228';
$VERSION = '1.232';

# 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.228';
$VERSION = '1.232';
}


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.228';
$VERSION = '1.232';
@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.228';
$VERSION = '1.232';
@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.228';
$VERSION = '1.232';
@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.228';
$VERSION = '1.232';
@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.228';
$VERSION = '1.232';
@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.228';
$VERSION = '1.232';
@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.228';
$VERSION = '1.232';
@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.228';
$VERSION = '1.232';
@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.228';
$VERSION = '1.232';
@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.228';
$VERSION = '1.232';
@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.228';
$VERSION = '1.232';
@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.228';
$VERSION = '1.232';
@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.228';
$VERSION = '1.232';
@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.228';
$VERSION = '1.232';
@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.228';
$VERSION = '1.232';
@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.228';
$VERSION = '1.232';
@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.228';
$VERSION = '1.232';
@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.228';
$VERSION = '1.232';
@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.228';
$VERSION = '1.232';
@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.228';
$VERSION = '1.232';
@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.228';
$VERSION = '1.232';
@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.228';
$VERSION = '1.232';
@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.228';
$VERSION = '1.232';
@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.228';
$VERSION = '1.232';
@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.228';
$VERSION = '1.232';
@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.228';
$VERSION = '1.232';
@ISA = 'PPI::Structure';
}

Expand Down
2 changes: 1 addition & 1 deletion lib/PPI/Structure/When.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.228';
$VERSION = '1.232';
@ISA = 'PPI::Structure';
}

Expand Down
Loading

0 comments on commit 9360baf

Please sign in to comment.