Skip to content

Commit 2de9290

Browse files
committed
update feature for perl 5.43.0
1 parent 4ddd215 commit 2de9290

File tree

2 files changed

+11
-2
lines changed

2 files changed

+11
-2
lines changed

lib/feature.pm

Lines changed: 7 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

regen/feature.pl

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,6 +81,7 @@ BEGIN
8181
grep {; $_ ne 'apostrophe_as_package_separator'
8282
&& $_ ne 'smartmatch' }
8383
( +V5_39 );
84+
use constant V5_43 => sort ( +V5_41 );
8485

8586
#
8687
# when updating features please also update the Pod entry for L</"FEATURES CHEAT SHEET">
@@ -116,6 +117,8 @@ BEGIN
116117
"5.39" => [ +V5_39 ],
117118
# using 5.41 features bundle
118119
"5.41" => [ +V5_41 ],
120+
# using 5.43 features bundle
121+
"5.43" => [ +V5_43 ],
119122
);
120123

121124
my @noops = qw( postderef lexical_subs );
@@ -618,7 +621,7 @@ sub longest {
618621

619622
__END__
620623
package feature;
621-
our $VERSION = '1.97';
624+
our $VERSION = '1.98';
622625
623626
FEATURES
624627

0 commit comments

Comments
 (0)