Skip to content

Commit bdc025d

Browse files
committed
Fix RT#171399
1 parent 5b0a1e7 commit bdc025d

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

Changes

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
Revision history for Data-Random-String-Matches
22

3+
0.05
4+
Fix RT#171399
5+
36
0.04 Mon Nov 3 21:02:16 EST 2025
47
Fixed 'Argument "#" isn't numeric in range (or flop)' with qr/!#-'*+\\-\\.\\^_`|~0-9A-Za-z/
58

Makefile.PL

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,5 +73,5 @@ WriteMakefile(
7373
}
7474
},
7575
},
76-
MIN_PERL_VERSION => '5.010'
76+
MIN_PERL_VERSION => '5.014'
7777
);

lib/Data/Random/String/Matches.pm

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
package Data::Random::String::Matches;
22

3-
use 5.010;
3+
use 5.014;
44

55
use strict;
66
use warnings;
@@ -193,7 +193,7 @@ sub new {
193193
regex => $regex_obj,
194194
regex_str => "$regex",
195195
length => $length || 10,
196-
backrefs => {}, # Store backreferences
196+
backrefs => {}, # Store backreferences
197197
named_refs => {}, # Store named captures
198198
};
199199

0 commit comments

Comments
 (0)