From: Peter Rabbitson Date: Sat, 20 Apr 2013 23:23:55 +0000 (+0200) Subject: Devrel 0.08249_01 X-Git-Tag: v0.08250~20 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=dbsrgits%2FDBIx-Class.git;a=commitdiff_plain;h=725e1ef2579ac912cf8ca2d2ddd7f8e814758bbf Devrel 0.08249_01 --- diff --git a/lib/DBIx/Class.pm b/lib/DBIx/Class.pm index ca0d03b..b9ef4ea 100644 --- a/lib/DBIx/Class.pm +++ b/lib/DBIx/Class.pm @@ -11,7 +11,7 @@ our $VERSION; # $VERSION declaration must stay up here, ahead of any other package # declarations, as to not confuse various modules attempting to determine # this ones version, whether that be s.c.o. or Module::Metadata, etc -$VERSION = '0.08242'; +$VERSION = '0.08249_01'; $VERSION = eval $VERSION if $VERSION =~ /_/; # numify for warning-free dev releases diff --git a/maint/Makefile.PL.inc/29_handle_version.pl b/maint/Makefile.PL.inc/29_handle_version.pl index 7747051..22d21fd 100644 --- a/maint/Makefile.PL.inc/29_handle_version.pl +++ b/maint/Makefile.PL.inc/29_handle_version.pl @@ -21,9 +21,6 @@ if ($v_point >= 300) { } Meta->makemaker_args->{DISTVNAME} = Meta->name . "-$version_string-TRIAL" if ( - # 0.08240 ~ 0.08249 shall be TRIALs for the collapser rewrite - ( $v_point >= 240 and $v_point <= 249 ) - or # all odd releases *after* 0.08200 generate a -TRIAL, no exceptions ( $v_point > 200 and int($v_point / 100) % 2 ) );