From 4035348a96178ca9afedd57d4c2fc824907a0451 Mon Sep 17 00:00:00 2001 From: "E. Choroba" Date: Wed, 27 Sep 2023 10:43:49 +0200 Subject: [PATCH] Mention the version defer and try features were introduced in All other features (including the experimental ones) mention it. --- lib/feature.pm | 6 +++++- regen/feature.pl | 6 +++++- 2 files changed, 10 insertions(+), 2 deletions(-) diff --git a/lib/feature.pm b/lib/feature.pm index 41e3e47..e391b00 100644 --- a/lib/feature.pm +++ b/lib/feature.pm @@ -4,7 +4,7 @@ # Any changes made here will be lost! package feature; -our $VERSION = '1.85'; +our $VERSION = '1.86'; our %feature = ( fc => 'feature_fc', @@ -452,6 +452,8 @@ This feature enables the C and C syntax, which allows exception handling, where exceptions thrown from the body of the block introduced with C are caught by executing the body of the C block. +This feature is available starting in Perl 5.34. + For more information, see L. =head2 The 'defer' feature @@ -466,6 +468,8 @@ This feature enables the C block syntax, which allows a block of code to be deferred until when the flow of control leaves the block which contained it. For more details, see L. +This feature is available starting in Perl 5.36. + =head2 The 'extra_paired_delimiters' feature B: This feature is still experimental and the implementation may diff --git a/regen/feature.pl b/regen/feature.pl index fd8125d..d1e1a74 100755 --- a/regen/feature.pl +++ b/regen/feature.pl @@ -538,7 +538,7 @@ read_only_bottom_close_and_rename($h); __END__ package feature; -our $VERSION = '1.85'; +our $VERSION = '1.86'; FEATURES @@ -909,6 +909,8 @@ This feature enables the C and C syntax, which allows exception handling, where exceptions thrown from the body of the block introduced with C are caught by executing the body of the C block. +This feature is available starting in Perl 5.34. + For more information, see L. =head2 The 'defer' feature @@ -923,6 +925,8 @@ This feature enables the C block syntax, which allows a block of code to be deferred until when the flow of control leaves the block which contained it. For more details, see L. +This feature is available starting in Perl 5.36. + =head2 The 'extra_paired_delimiters' feature B: This feature is still experimental and the implementation may -- 1.8.3.1