From: Daniel Westermann-Clark Date: Mon, 13 Feb 2006 21:28:21 +0000 (+0000) Subject: Prepping for release X-Git-Tag: v0.05005^0 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=d0bb3812791971bbc5f40490d704b511a5f1b00d;p=dbsrgits%2FDBIx-Class.git Prepping for release --- diff --git a/Changes b/Changes index 1fd06ee..3e4b776 100644 --- a/Changes +++ b/Changes @@ -1,11 +1,13 @@ Revision history for DBIx::Class +0.05005 2006-02-13 21:24:51 + - remove build dependency on version.pm + 0.05004 2006-02-13 20:59:00 - allow specification of related columns via cols attr when primary - - Fix count for group_by as scalar - keys of the related table are not fetched + - fix count for group_by as scalar keys of the related table are not fetched - add horrific fix to make Oracle's retarded limit syntax work - - Remove Carp require + - remove Carp require 0.05003 2006-02-08 17:50:20 - add component_class accessors and use them for *_class diff --git a/MANIFEST b/MANIFEST index 5f75b92..5434fc5 100644 --- a/MANIFEST +++ b/MANIFEST @@ -84,6 +84,7 @@ t/19quotes.t t/20setuperrors.t t/30dbicplain.t t/40resultsetmanager.t +t/41orrible.t t/basicrels/01core.t t/basicrels/04db.t t/basicrels/05multipk.t diff --git a/lib/DBIx/Class.pm b/lib/DBIx/Class.pm index 4255db6..855f0b4 100644 --- a/lib/DBIx/Class.pm +++ b/lib/DBIx/Class.pm @@ -13,7 +13,7 @@ sub component_base_class { 'DBIx::Class' } # i.e. first release of 0.XX *must* be 0.XX000. This avoids fBSD ports # brain damage and presumably various other packaging systems too -$VERSION = '0.05004'; +$VERSION = '0.05005'; sub MODIFY_CODE_ATTRIBUTES { my ($class,$code,@attrs) = @_;