Skip to content

Commit 6cda553

Browse files
committed
increment $VERSION after 1.284 release
1 parent dc319a2 commit 6cda553

Some content is hidden

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

96 files changed

+97
-95
lines changed

Changes

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
Revision history for Perl extension PPI
22

3+
{{$NEXT}}
4+
35
1.284 2025-10-28 16:56:25Z
46
- fix author tests: pod-no404s.t (GH#315) (Lukas Mai)
57
- fix regex anchors in PPI::Statement::Compound->type (GH#316) (Lukas Mai)

lib/PPI.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ use 5.006;
66
use strict;
77

88
# Set the version for CPAN
9-
our $VERSION = '1.284';
9+
our $VERSION = '1.285';
1010

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

lib/PPI/Cache.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ use Digest::MD5 2.35 ();
5454
use Params::Util qw{_INSTANCE _SCALAR};
5555
use PPI::Document ();
5656

57-
our $VERSION = '1.284';
57+
our $VERSION = '1.285';
5858

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

lib/PPI/Document.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ use YAML::PP ();
7676
use overload 'bool' => \&PPI::Util::TRUE;
7777
use overload '""' => 'content';
7878

79-
our $VERSION = '1.284';
79+
our $VERSION = '1.285';
8080

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

lib/PPI/Document/File.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ use Carp ();
2222
use Params::Util qw{_STRING _INSTANCE};
2323
use PPI::Document ();
2424

25-
our $VERSION = '1.284';
25+
our $VERSION = '1.285';
2626

2727
our @ISA = 'PPI::Document';
2828

lib/PPI/Document/Fragment.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ within it, and it does not represent a scope.
2121
use strict;
2222
use PPI::Document ();
2323

24-
our $VERSION = '1.284';
24+
our $VERSION = '1.285';
2525

2626
our @ISA = 'PPI::Document';
2727

lib/PPI/Document/Normalized.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ use Scalar::Util qw{refaddr reftype blessed};
4545
use Params::Util qw{_INSTANCE _ARRAY};
4646
use PPI::Util ();
4747

48-
our $VERSION = '1.284';
48+
our $VERSION = '1.285';
4949

5050
use overload 'bool' => \&PPI::Util::TRUE;
5151
use overload '==' => 'equal';

lib/PPI/Dumper.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ generate the dump content itself.
3535
use strict;
3636
use Params::Util qw{_INSTANCE};
3737

38-
our $VERSION = '1.284';
38+
our $VERSION = '1.285';
3939

4040

4141

lib/PPI/Element.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ use PPI::Util ();
2929
use PPI::Node ();
3030
use PPI::Singletons '%_PARENT', '%_POSITION_CACHE';
3131

32-
our $VERSION = '1.284';
32+
our $VERSION = '1.285';
3333

3434
our $errstr = "";
3535

lib/PPI/Exception.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ of this class.
2424
use strict;
2525
use Params::Util qw{_INSTANCE};
2626

27-
our $VERSION = '1.284';
27+
our $VERSION = '1.285';
2828

2929

3030
=head1 METHODS

0 commit comments

Comments
 (0)