summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorAaron Crane <arc@cpan.org>2016-11-20 14:18:22 +0000
committerAaron Crane <arc@cpan.org>2017-01-05 19:54:07 +0000
commitd6c970c7e66d6f55dba7f13549143a2f4ba641c7 (patch)
treee080fbe38f9cd2868e8d0607e0840b2906633abc /lib
parentfb387a96f609c00a517aa640d941f26f1e52f15a (diff)
downloadperl-d6c970c7e66d6f55dba7f13549143a2f4ba641c7.tar.gz
Fix the Unicode Bug in the range operator
Diffstat (limited to 'lib')
-rw-r--r--lib/feature.pm6
1 files changed, 4 insertions, 2 deletions
diff --git a/lib/feature.pm b/lib/feature.pm
index e97ffff152..fe5c513e59 100644
--- a/lib/feature.pm
+++ b/lib/feature.pm
@@ -5,7 +5,7 @@
package feature;
-our $VERSION = '1.45';
+our $VERSION = '1.46';
our %feature = (
fc => 'feature_fc',
@@ -174,7 +174,9 @@ potentially using Unicode in your program, the
C<use feature 'unicode_strings'> subpragma is B<strongly> recommended.
This feature is available starting with Perl 5.12; was almost fully
-implemented in Perl 5.14; and extended in Perl 5.16 to cover C<quotemeta>.
+implemented in Perl 5.14; and extended in Perl 5.16 to cover C<quotemeta>;
+and extended further in Perl 5.26 to cover L<the range
+operator|perlop/Range Operators>.
=head2 The 'unicode_eval' and 'evalbytes' features