From: Peter Rabbitson Date: Fri, 29 Nov 2013 13:03:48 +0000 (+0100) Subject: Properly TRIAL-ize X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=d9493b3c3de8aa3380258d0312c8bf3f1ba5351c;p=dbsrgits%2FDBIx-Class.git Properly TRIAL-ize Note - this is temporary, I am going to rework the numbering scheme to *prevent* 1.0 talk for good --- diff --git a/maint/Makefile.PL.inc/29_handle_version.pl b/maint/Makefile.PL.inc/29_handle_version.pl index d146273..14d824e 100644 --- a/maint/Makefile.PL.inc/29_handle_version.pl +++ b/maint/Makefile.PL.inc/29_handle_version.pl @@ -21,8 +21,8 @@ if ($v_point <= 900) { } Meta->makemaker_args->{DISTVNAME} = Meta->name . "-$version_string-TRIAL" if ( - # all odd releases *after* 0.08200 generate a -TRIAL, no exceptions - ( $v_point > 200 and int($v_point / 100) % 2 ) + # all DQ releases ( *after* 0.08800) generate a -TRIAL, no exceptions + $v_point > 800 );