Skip to content

Commit 3c7f127

Browse files
Leonthaarg
authored andcommitted
cpan/experimental - Update to version 0.035
0.035 2025-05-01 11:35:41+02:00 Europe/Berlin - regex_sets no longer experimental - switch/smartmatch were deprecated then undeprecated - Properly handle the win32_perlio warning
1 parent 68ce332 commit 3c7f127

File tree

3 files changed

+16
-9
lines changed

3 files changed

+16
-9
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.034.tar.gz',
438-
'SYNCINFO' => 'mauke on Sun Jan 12 01:01:29 2025',
437+
'DISTRIBUTION' => 'LEONT/experimental-0.035.tar.gz',
438+
'SYNCINFO' => 'jkeenan on Thu May 1 06:44:57 2025',
439439
'FILES' => q[cpan/experimental],
440440
'EXCLUDED' => [qr{^xt/}],
441441
},

cpan/experimental/lib/experimental.pm

Lines changed: 12 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
package experimental;
2-
$experimental::VERSION = '0.034';
2+
$experimental::VERSION = '0.035';
33
use strict;
44
use warnings;
55
use version ();
@@ -47,11 +47,13 @@ my %min_version = (
4747
try => '5.34.0',
4848
unicode_eval => '5.16.0',
4949
unicode_strings => '5.12.0',
50+
win32_perlio => '5.8.0',
5051
);
5152
my %removed_in_version = (
5253
array_base => '5.30.0',
5354
autoderef => '5.24.0',
5455
lexical_topic => '5.24.0',
56+
win32_perlio => '5.36.0',
5557
);
5658

5759
$_ = version->new($_) for values %min_version;
@@ -140,7 +142,7 @@ experimental - Experimental features made easy
140142
141143
=head1 VERSION
142144
143-
version 0.034
145+
version 0.035
144146
145147
=head1 SYNOPSIS
146148
@@ -244,7 +246,11 @@ This was added in perl 5.22.0.
244246
245247
=item * C<regex_sets> - allow extended bracketed character classes in regexps
246248
247-
This was added in perl 5.18.0.
249+
This was added in perl 5.18.0, and became non-experimental (and always
250+
enabled) in 5.36.0.
251+
252+
This is documented at
253+
L<perlrecharclass/Extended Bracketed Character Classes>.
248254
249255
=item * C<signatures> - allow subroutine signatures (for named arguments)
250256
@@ -255,13 +261,14 @@ This was added in perl 5.20.0.
255261
This was added in perl 5.10.0, but it should be noted there are significant
256262
incompatibilities between 5.10.0 and 5.10.1.
257263
258-
The feature is going to be deprecated in perl 5.38.0, and removed in 5.42.0.
264+
The feature was deprecated in perl 5.38.0, and undeprecated in 5.42.0.
259265
260266
=item * C<switch> - allow the use of C<~~>, given, and when
261267
262268
This was added in perl 5.10.0.
263269
264-
The feature is going to be deprecated in perl 5.38.0, and removed in 5.42.0.
270+
The feature was deprecated in perl 5.38.0, and undeprecated in
271+
5.42.0.
265272
266273
=item * C<try> - allow the use of C<try> and C<catch>
267274

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.034';
2+
$stable::VERSION = '0.035';
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.034
58+
version 0.035
5959
6060
=head1 SYNOPSIS
6161

0 commit comments

Comments
 (0)