Skip to content

Commit cf7cc0a

Browse files
Leontjkeenan
authored andcommitted
cpan/experimental - Update to version 0.036
0.036 2025-07-17 01:40:39+02:00 Europe/Brussels - Add features "class", "keyword_any" and "keyword_all"
1 parent 9f64cab commit cf7cc0a

File tree

3 files changed

+21
-6
lines changed

3 files changed

+21
-6
lines changed

Porting/Maintainers.pl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -434,8 +434,8 @@ package Maintainers;
434434
},
435435

436436
'experimental' => {
437-
'DISTRIBUTION' => 'LEONT/experimental-0.035.tar.gz',
438-
'SYNCINFO' => 'jkeenan on Thu May 1 06:44:57 2025',
437+
'DISTRIBUTION' => 'LEONT/experimental-0.036.tar.gz',
438+
'SYNCINFO' => 'jkeenan on Sat Jul 19 12:50:08 2025',
439439
'FILES' => q[cpan/experimental],
440440
'EXCLUDED' => [qr{^xt/}],
441441
},

cpan/experimental/lib/experimental.pm

Lines changed: 17 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
package experimental;
2-
$experimental::VERSION = '0.035';
2+
$experimental::VERSION = '0.036';
33
use strict;
44
use warnings;
55
use version ();
@@ -24,6 +24,7 @@ my %min_version = (
2424
autoderef => '5.14.0',
2525
bitwise => '5.22.0',
2626
builtin => '5.35.7',
27+
class => '5.37.9',
2728
const_attr => '5.22.0',
2829
current_sub => '5.16.0',
2930
declared_refs => '5.26.0',
@@ -33,6 +34,8 @@ my %min_version = (
3334
fc => '5.16.0',
3435
for_list => '5.35.5',
3536
isa => '5.31.7',
37+
keyword_all => '5.41.7',
38+
keyword_any => '5.41.7',
3639
lexical_topic => '5.10.0',
3740
lexical_subs => '5.18.0',
3841
postderef => '5.20.0',
@@ -142,7 +145,7 @@ experimental - Experimental features made easy
142145
143146
=head1 VERSION
144147
145-
version 0.035
148+
version 0.036
146149
147150
=head1 SYNOPSIS
148151
@@ -199,6 +202,10 @@ This was added in perl 5.36.0
199202
200203
This was added in perl 5.22.0.
201204
205+
=item * C<class> - enables the C<class>, C<field>, and C<method> syntax
206+
207+
This was added in perl 5.38.0.
208+
202209
=item * C<declared_refs> - enables aliasing via assignment to references
203210
204211
This was added in perl 5.26.0.
@@ -220,6 +227,14 @@ This was added in perl 5.36.0
220227
221228
This was added in perl 5.32.0.
222229
230+
=item * C<keyword_all> - enables the C<all> operator
231+
232+
This was added in perl 5.42.0.
233+
234+
=item * C<keyword_any> - enables the C<any> operator
235+
236+
This was added in perl 5.42.0.
237+
223238
=item * C<lexical_topic> - allow the use of lexical C<$_> via C<my $_>.
224239
225240
This was added in perl 5.10.0 and removed in perl 5.24.0.

cpan/experimental/lib/stable.pm

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
package stable;
2-
$stable::VERSION = '0.035';
2+
$stable::VERSION = '0.036';
33
use strict;
44
use warnings;
55
use version ();
@@ -55,7 +55,7 @@ stable - Experimental features made easy, once we know they're stable
5555
5656
=head1 VERSION
5757
58-
version 0.035
58+
version 0.036
5959
6060
=head1 SYNOPSIS
6161

0 commit comments

Comments
 (0)