Skip to content

Commit

Permalink
cpan/experimental - Update to version 0.032
Browse files Browse the repository at this point in the history
0.032     2024-04-25 22:30:41+01:00 Europe/Lisbon
          - Add the newly-stable features to stable.pm - extra_paired_delimiters, const_attr, for_list
  • Loading branch information
leonerd committed Apr 27, 2024
1 parent 6c180ea commit 06115c5
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 9 deletions.
6 changes: 3 additions & 3 deletions MANIFEST
Expand Up @@ -984,9 +984,9 @@ cpan/Encode/ucm/viscii.ucm Unicode Character Map
cpan/Encode/Unicode/Makefile.PL Encode extension
cpan/Encode/Unicode/Unicode.pm Encode extension
cpan/Encode/Unicode/Unicode.xs Encode extension
cpan/experimental/lib/experimental.pm
cpan/experimental/lib/stable.pm
cpan/experimental/t/basic.t
cpan/experimental/lib/experimental.pm Module related to experimental
cpan/experimental/lib/stable.pm Module related to experimental
cpan/experimental/t/basic.t Test file related to experimental
cpan/ExtUtils-Constant/lib/ExtUtils/Constant.pm generate XS code to import C header constants
cpan/ExtUtils-Constant/lib/ExtUtils/Constant/Base.pm generate XS code to import C header constants
cpan/ExtUtils-Constant/lib/ExtUtils/Constant/ProxySubs.pm generate XS code for proxy constants
Expand Down
3 changes: 2 additions & 1 deletion Porting/Maintainers.pl
Expand Up @@ -429,7 +429,8 @@ package Maintainers;
},

'experimental' => {
'DISTRIBUTION' => 'LEONT/experimental-0.031.tar.gz',
'DISTRIBUTION' => 'LEONT/experimental-0.032.tar.gz',
'SYNCINFO' => 'LeoNerd on Sat Apr 27 09:43:20 2024',
'FILES' => q[cpan/experimental],
'EXCLUDED' => [qr{^xt/}],
},
Expand Down
4 changes: 2 additions & 2 deletions cpan/experimental/lib/experimental.pm
@@ -1,5 +1,5 @@
package experimental;
$experimental::VERSION = '0.031';
$experimental::VERSION = '0.032';
use strict;
use warnings;
use version ();
Expand Down Expand Up @@ -140,7 +140,7 @@ experimental - Experimental features made easy
=head1 VERSION
version 0.031
version 0.032
=head1 SYNOPSIS
Expand Down
15 changes: 12 additions & 3 deletions cpan/experimental/lib/stable.pm
@@ -1,5 +1,5 @@
package stable;
$stable::VERSION = '0.031';
$stable::VERSION = '0.032';
use strict;
use warnings;
use version ();
Expand All @@ -12,6 +12,9 @@ my %allow_at = (
isa => 5.032000,
lexical_subs => 5.022000,
postderef => 5.020000,
extra_paired_delimiters => 5.036000,
const_attr => 5.022000,
for_list => 5.036000,
);

sub import {
Expand Down Expand Up @@ -53,7 +56,7 @@ stable - Experimental features made easy, once we know they're stable
=head1 VERSION
version 0.031
version 0.032
=head1 SYNOPSIS
Expand All @@ -62,7 +65,7 @@ version 0.031
=head1 DESCRIPTION
The L<experimental> pragma makes it easy to turn on experimental while turning
The L<experimental> pragma makes it easy to turn on experiments while turning
off associated warnings. You should read about it, if you don't already know
what it does.
Expand Down Expand Up @@ -139,6 +142,12 @@ change, but significant bugs makes them unsafe to use before 5.22.
=item * C<postderef> - stable as of perl 5.20, available via stable 0.031
=item * C<extra_paired_delimiters> - stable as of perl 5.36, available via stable 0.032
=item * C<const_attr> - stable as of perl 5.22, available via stable 0.032
=item * C<for_list> - stable as of perl 5.36, available via stable 0.032
=back
=head1 SEE ALSO
Expand Down

0 comments on commit 06115c5

Please sign in to comment.