From: Rafael Garcia-Suarez Date: Fri, 7 Sep 2007 08:55:19 +0000 (+0000) Subject: feature bundle :5.10 should be equivalent to latest :5.10.X X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=d052521ac15ab4bed8ae26dfa1c8e09c87be6d3c;p=p5sagit%2Fp5-mst-13.2.git feature bundle :5.10 should be equivalent to latest :5.10.X p4raw-id: //depot/perl@31811 --- diff --git a/lib/feature.pm b/lib/feature.pm index 7ffae72..d53699e 100644 --- a/lib/feature.pm +++ b/lib/feature.pm @@ -1,6 +1,6 @@ package feature; -our $VERSION = '1.10'; +our $VERSION = '1.11'; # (feature name) => (internal name, used in %^H) my %feature = ( @@ -13,10 +13,9 @@ my %feature = ( my %feature_bundle = ( "5.10.0" => [qw(switch say err state)], ); + # latest version here -# keep it harcoded until we actually bump the version number to 5.10 -$feature_bundle{"5.10"} = $feature_bundle{"5.10.0"}; -#$feature_bundle{"5.10"} = $feature_bundle{sprintf("%vd",$^V)}; +$feature_bundle{"5.10"} = $feature_bundle{sprintf("%vd",$^V)}; $feature_bundle{"5.9.5"} = $feature_bundle{"5.10.0"};