diff options
author | Jesse Vincent <jesse@bestpractical.com> | 2010-03-14 20:30:30 +0000 |
---|---|---|
committer | Jesse Vincent <jesse@bestpractical.com> | 2010-03-14 21:17:26 +0000 |
commit | b7569deb825abe0814411c06d6990b49bb917a6d (patch) | |
tree | 80bcb1ff42a91b4aab52b9e3245448aa4abe8556 /lib | |
parent | 4cabf874ee37b27dc1844a78d68b2cacf5caaae8 (diff) | |
download | perl-b7569deb825abe0814411c06d6990b49bb917a6d.tar.gz |
feature.pm needed to be taught about "use feature ':5.12'"
Diffstat (limited to 'lib')
-rw-r--r-- | lib/feature.pm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/feature.pm b/lib/feature.pm index 103e3bb742..1517c1ffe8 100644 --- a/lib/feature.pm +++ b/lib/feature.pm @@ -1,6 +1,6 @@ package feature; -our $VERSION = '1.15'; +our $VERSION = '1.16'; # (feature name) => (internal name, used in %^H) my %feature = ( @@ -20,6 +20,7 @@ our $hint_uni8bit = 0x00000800; my %feature_bundle = ( "5.10" => [qw(switch say state)], "5.11" => [qw(switch say state unicode_strings)], + "5.12" => [qw(switch say state unicode_strings)], ); # special case |