update feature for perl 5.43.0

This commit is contained in:
Philippe Bruhat (BooK) 2025-07-03 18:58:59 +02:00
parent 4ddd215baf
commit 2de9290373
2 changed files with 11 additions and 2 deletions

8
lib/feature.pm generated
View File

@ -4,7 +4,7 @@
# Any changes made here will be lost!
package feature;
our $VERSION = '1.97';
our $VERSION = '1.98';
our %feature = (
fc => 'feature_fc',
@ -73,6 +73,8 @@ $feature_bundle{"5.36"} = $feature_bundle{"5.35"};
$feature_bundle{"5.38"} = $feature_bundle{"5.37"};
$feature_bundle{"5.40"} = $feature_bundle{"5.39"};
$feature_bundle{"5.42"} = $feature_bundle{"5.41"};
$feature_bundle{"5.43"} = $feature_bundle{"5.41"};
$feature_bundle{"5.44"} = $feature_bundle{"5.41"};
$feature_bundle{"5.9.5"} = $feature_bundle{"5.10"};
my %noops = (
postderef => 1,
@ -676,6 +678,10 @@ The following feature bundles are available:
module_true postderef_qq say signatures
state try unicode_eval unicode_strings
:5.44 bitwise current_sub evalbytes fc isa
module_true postderef_qq say signatures
state try unicode_eval unicode_strings
The C<:default> bundle represents the feature set that is enabled before
any C<use feature> or C<no feature> declaration.

View File

@ -81,6 +81,7 @@ use constant V5_41 => sort
grep {; $_ ne 'apostrophe_as_package_separator'
&& $_ ne 'smartmatch' }
( +V5_39 );
use constant V5_43 => sort ( +V5_41 );
#
# when updating features please also update the Pod entry for L</"FEATURES CHEAT SHEET">
@ -116,6 +117,8 @@ my %feature_bundle = (
"5.39" => [ +V5_39 ],
# using 5.41 features bundle
"5.41" => [ +V5_41 ],
# using 5.43 features bundle
"5.43" => [ +V5_43 ],
);
my @noops = qw( postderef lexical_subs );
@ -618,7 +621,7 @@ read_only_bottom_close_and_rename($h);
__END__
package feature;
our $VERSION = '1.97';
our $VERSION = '1.98';
FEATURES