Skip to content

Commit

Permalink
increment $VERSION after 1.277 release
Browse files Browse the repository at this point in the history
  • Loading branch information
Christian Walde committed Sep 22, 2023
1 parent 5296718 commit 1c3c2e3
Show file tree
Hide file tree
Showing 95 changed files with 96 additions and 94 deletions.
2 changes: 2 additions & 0 deletions Changes
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
Revision history for Perl extension PPI

{{$NEXT}}

1.277 2023-09-22 09:12:48Z
Summary:
- Parse prototypes as literal quotes, enables parens and newlines in protos
Expand Down
2 changes: 1 addition & 1 deletion lib/PPI.pm
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ use 5.006;
use strict;

# Set the version for CPAN
our $VERSION = '1.277';
our $VERSION = '1.278';

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

Expand Down
2 changes: 1 addition & 1 deletion lib/PPI/Cache.pm
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ use Digest::MD5 2.35 ();
use Params::Util qw{_INSTANCE _SCALAR};
use PPI::Document ();

our $VERSION = '1.277';
our $VERSION = '1.278';

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 @@ -75,7 +75,7 @@ use PPI::Node ();
use overload 'bool' => \&PPI::Util::TRUE;
use overload '""' => 'content';

our $VERSION = '1.277';
our $VERSION = '1.278';

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

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 @@ -22,7 +22,7 @@ use Carp ();
use Params::Util qw{_STRING _INSTANCE};
use PPI::Document ();

our $VERSION = '1.277';
our $VERSION = '1.278';

our @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 @@ -21,7 +21,7 @@ within it, and it does not represent a scope.
use strict;
use PPI::Document ();

our $VERSION = '1.277';
our $VERSION = '1.278';

our @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 @@ -45,7 +45,7 @@ use Scalar::Util qw{refaddr reftype blessed};
use Params::Util qw{_INSTANCE _ARRAY};
use PPI::Util ();

our $VERSION = '1.277';
our $VERSION = '1.278';

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

our $VERSION = '1.277';
our $VERSION = '1.278';



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

our $VERSION = '1.277';
our $VERSION = '1.278';

our $errstr = "";

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

our $VERSION = '1.277';
our $VERSION = '1.278';


=head1 METHODS
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 @@ -3,7 +3,7 @@ package PPI::Exception::ParserRejection;
use strict;
use PPI::Exception ();

our $VERSION = '1.277';
our $VERSION = '1.278';

our @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 @@ -74,7 +74,7 @@ caught by the Find object and returned as an error.
use strict;
use Params::Util qw{_INSTANCE};

our $VERSION = '1.277';
our $VERSION = '1.278';



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

our $VERSION = '1.277';
our $VERSION = '1.278';

our $errstr = "";

Expand Down
2 changes: 1 addition & 1 deletion lib/PPI/Node.pm
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ use Params::Util qw{_INSTANCE _CLASS _CODELIKE _NUMBER};
use PPI::Element ();
use PPI::Singletons '%_PARENT';

our $VERSION = '1.277';
our $VERSION = '1.278';

our @ISA = "PPI::Element";

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 PPI::Normal::Standard ();
use PPI::Singletons '%LAYER';

our $VERSION = '1.277';
our $VERSION = '1.278';

# With the registration mechanism in place, load in the main set of
# normalization methods to initialize the store.
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 @@ -18,7 +18,7 @@ B<Move along, nothing to see here>.

use strict;

our $VERSION = '1.277';
our $VERSION = '1.278';



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

our $VERSION = '1.277';
our $VERSION = '1.278';

our @ISA = 'Exporter';
our @EXPORT_OK = qw{ %_PARENT %OPERATOR %MAGIC %LAYER $CURLY_SYMBOL %QUOTELIKE %KEYWORDS };
Expand Down
2 changes: 1 addition & 1 deletion lib/PPI/Statement.pm
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ use PPI::Node ();
use PPI::Exception ();
use PPI::Singletons '%_PARENT';

our $VERSION = '1.277';
our $VERSION = '1.278';

our @ISA = "PPI::Node";

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 @@ -40,7 +40,7 @@ to, or the structure to break out of.
use strict;
use PPI::Statement ();

our $VERSION = '1.277';
our $VERSION = '1.278';

our @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 @@ -53,7 +53,7 @@ standard L<PPI::Statement>, L<PPI::Node> and L<PPI::Element> methods.
use strict;
use PPI::Statement ();

our $VERSION = '1.277';
our $VERSION = '1.278';

our @ISA = "PPI::Statement";

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 @@ -43,7 +43,7 @@ Perl code itself.
use strict;
use PPI::Statement ();

our $VERSION = '1.277';
our $VERSION = '1.278';

our @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 @@ -47,7 +47,7 @@ provided by L<PPI::Statement>, L<PPI::Node> and L<PPI::Element>.
use strict;
use PPI::Statement ();

our $VERSION = '1.277';
our $VERSION = '1.278';

our @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 @@ -38,7 +38,7 @@ provided by L<PPI::Statement>, L<PPI::Node> and L<PPI::Element>.
use strict;
use PPI::Statement ();

our $VERSION = '1.277';
our $VERSION = '1.278';

our @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 @@ -34,7 +34,7 @@ standard L<PPI::Structure>, L<PPI::Node> and L<PPI::Element> methods.
use strict;
use PPI::Statement ();

our $VERSION = '1.277';
our $VERSION = '1.278';

our @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 @@ -48,7 +48,7 @@ use strict;
use PPI::Statement ();
use PPI::Statement::Include::Perl6 ();

our $VERSION = '1.277';
our $VERSION = '1.278';

our @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 @@ -41,7 +41,7 @@ string and will not be parsed by PPI.
use strict;
use PPI::Statement::Include ();

our $VERSION = '1.277';
our $VERSION = '1.278';

our @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 @@ -43,7 +43,7 @@ provided by L<PPI::Statement>, L<PPI::Node> and L<PPI::Element>.
use strict;
use PPI::Statement ();

our $VERSION = '1.277';
our $VERSION = '1.278';

our @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 @@ -41,7 +41,7 @@ L<PPI::Statement>, L<PPI::Node> and L<PPI::Element> methods.
use strict;
use PPI::Statement ();

our $VERSION = '1.277';
our $VERSION = '1.278';

our @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 @@ -56,7 +56,7 @@ may have 'sub' in front of them.
use strict;
use PPI::Statement::Sub ();

our $VERSION = '1.277';
our $VERSION = '1.278';

our @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 @@ -35,7 +35,7 @@ use List::Util ();
use Params::Util qw{_INSTANCE};
use PPI::Statement ();

our $VERSION = '1.277';
our $VERSION = '1.278';

our @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 @@ -35,7 +35,7 @@ L<PPI::Element>.
use strict;
use PPI::Statement ();

our $VERSION = '1.277';
our $VERSION = '1.278';

our @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 @@ -47,7 +47,7 @@ L<PPI::Element>.
use strict;
use PPI::Statement ();

our $VERSION = '1.277';
our $VERSION = '1.278';

our @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 @@ -42,7 +42,7 @@ use strict;
use Params::Util qw{_INSTANCE};
use PPI::Statement::Expression ();

our $VERSION = '1.277';
our $VERSION = '1.278';

our @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 @@ -42,7 +42,7 @@ standard L<PPI::Structure>, L<PPI::Node> and L<PPI::Element> methods.
use strict;
use PPI::Statement ();

our $VERSION = '1.277';
our $VERSION = '1.278';

our @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 @@ -95,7 +95,7 @@ use PPI::Node ();
use PPI::Exception ();
use PPI::Singletons '%_PARENT';

our $VERSION = '1.277';
our $VERSION = '1.278';

our @ISA = "PPI::Node";

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 @@ -43,7 +43,7 @@ standard L<PPI::Structure>, L<PPI::Node> and L<PPI::Element> methods.
use strict;
use PPI::Structure ();

our $VERSION = '1.277';
our $VERSION = '1.278';

our @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 @@ -38,7 +38,7 @@ the standard L<PPI::Structure>, L<PPI::Node> and L<PPI::Element> methods.
use strict;
use PPI::Structure ();

our $VERSION = '1.277';
our $VERSION = '1.278';

our @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 @@ -33,7 +33,7 @@ the standard L<PPI::Structure>, L<PPI::Node> and L<PPI::Element> methods.
use strict;
use PPI::Structure ();

our $VERSION = '1.277';
our $VERSION = '1.278';

our @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 @@ -34,7 +34,7 @@ standard L<PPI::Structure>, L<PPI::Node> and L<PPI::Element> methods.
use strict;
use PPI::Structure ();

our $VERSION = '1.277';
our $VERSION = '1.278';

our @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 @@ -34,7 +34,7 @@ standard L<PPI::Structure>, L<PPI::Node> and L<PPI::Element> methods.
use strict;
use PPI::Structure ();

our $VERSION = '1.277';
our $VERSION = '1.278';

our @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 @@ -37,7 +37,7 @@ use strict;
use Carp ();
use PPI::Structure ();

our $VERSION = '1.277';
our $VERSION = '1.278';

our @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 @@ -39,7 +39,7 @@ standard L<PPI::Structure>, L<PPI::Node> and L<PPI::Element> methods.
use strict;
use PPI::Structure ();

our $VERSION = '1.277';
our $VERSION = '1.278';

our @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 @@ -40,7 +40,7 @@ standard L<PPI::Structure>, L<PPI::Node> and L<PPI::Element> methods.
use strict;
use PPI::Structure ();

our $VERSION = '1.277';
our $VERSION = '1.278';

our @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 @@ -34,7 +34,7 @@ standard L<PPI::Structure>, L<PPI::Node> and L<PPI::Element> methods.
use strict;
use PPI::Structure ();

our $VERSION = '1.277';
our $VERSION = '1.278';

our @ISA = "PPI::Structure";

Expand Down
Loading

0 comments on commit 1c3c2e3

Please sign in to comment.