mirror of
https://github.com/Perl/perl5.git
synced 2026-01-26 16:39:36 +00:00
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"
This commit is contained in:
parent
9f64cab5b4
commit
cf7cc0a627
@ -434,8 +434,8 @@ our %Modules = (
|
||||
},
|
||||
|
||||
'experimental' => {
|
||||
'DISTRIBUTION' => 'LEONT/experimental-0.035.tar.gz',
|
||||
'SYNCINFO' => 'jkeenan on Thu May 1 06:44:57 2025',
|
||||
'DISTRIBUTION' => 'LEONT/experimental-0.036.tar.gz',
|
||||
'SYNCINFO' => 'jkeenan on Sat Jul 19 12:50:08 2025',
|
||||
'FILES' => q[cpan/experimental],
|
||||
'EXCLUDED' => [qr{^xt/}],
|
||||
},
|
||||
|
||||
@ -1,5 +1,5 @@
|
||||
package experimental;
|
||||
$experimental::VERSION = '0.035';
|
||||
$experimental::VERSION = '0.036';
|
||||
use strict;
|
||||
use warnings;
|
||||
use version ();
|
||||
@ -24,6 +24,7 @@ my %min_version = (
|
||||
autoderef => '5.14.0',
|
||||
bitwise => '5.22.0',
|
||||
builtin => '5.35.7',
|
||||
class => '5.37.9',
|
||||
const_attr => '5.22.0',
|
||||
current_sub => '5.16.0',
|
||||
declared_refs => '5.26.0',
|
||||
@ -33,6 +34,8 @@ my %min_version = (
|
||||
fc => '5.16.0',
|
||||
for_list => '5.35.5',
|
||||
isa => '5.31.7',
|
||||
keyword_all => '5.41.7',
|
||||
keyword_any => '5.41.7',
|
||||
lexical_topic => '5.10.0',
|
||||
lexical_subs => '5.18.0',
|
||||
postderef => '5.20.0',
|
||||
@ -142,7 +145,7 @@ experimental - Experimental features made easy
|
||||
|
||||
=head1 VERSION
|
||||
|
||||
version 0.035
|
||||
version 0.036
|
||||
|
||||
=head1 SYNOPSIS
|
||||
|
||||
@ -199,6 +202,10 @@ This was added in perl 5.36.0
|
||||
|
||||
This was added in perl 5.22.0.
|
||||
|
||||
=item * C<class> - enables the C<class>, C<field>, and C<method> syntax
|
||||
|
||||
This was added in perl 5.38.0.
|
||||
|
||||
=item * C<declared_refs> - enables aliasing via assignment to references
|
||||
|
||||
This was added in perl 5.26.0.
|
||||
@ -220,6 +227,14 @@ This was added in perl 5.36.0
|
||||
|
||||
This was added in perl 5.32.0.
|
||||
|
||||
=item * C<keyword_all> - enables the C<all> operator
|
||||
|
||||
This was added in perl 5.42.0.
|
||||
|
||||
=item * C<keyword_any> - enables the C<any> operator
|
||||
|
||||
This was added in perl 5.42.0.
|
||||
|
||||
=item * C<lexical_topic> - allow the use of lexical C<$_> via C<my $_>.
|
||||
|
||||
This was added in perl 5.10.0 and removed in perl 5.24.0.
|
||||
|
||||
@ -1,5 +1,5 @@
|
||||
package stable;
|
||||
$stable::VERSION = '0.035';
|
||||
$stable::VERSION = '0.036';
|
||||
use strict;
|
||||
use warnings;
|
||||
use version ();
|
||||
@ -55,7 +55,7 @@ stable - Experimental features made easy, once we know they're stable
|
||||
|
||||
=head1 VERSION
|
||||
|
||||
version 0.035
|
||||
version 0.036
|
||||
|
||||
=head1 SYNOPSIS
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user