X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FDBIx%2FClass.pm;h=86bc9b09943265155bc49c83a6652c5941922101;hb=e02b39b48c5cca4812acb88d0bb71443cd8c8ff9;hp=da4132c3a117f6d1cb1046ae3c2ddd0dc0779aac;hpb=e139bd600cc47935e6fff2b6fd23d85c36493fe3;p=dbsrgits%2FDBIx-Class.git diff --git a/lib/DBIx/Class.pm b/lib/DBIx/Class.pm index da4132c..86bc9b0 100644 --- a/lib/DBIx/Class.pm +++ b/lib/DBIx/Class.pm @@ -3,13 +3,23 @@ package DBIx::Class; use strict; use warnings; -use MRO::Compat; +BEGIN { + if ($] < 5.009_005) { + require MRO::Compat; + *DBIx::Class::_ENV_::OLD_MRO = sub () { 1 }; + } + else { + require mro; + *DBIx::Class::_ENV_::OLD_MRO = sub () { 0 }; + } +} + use mro 'c3'; use DBIx::Class::Optional::Dependencies; use vars qw($VERSION); -use base qw/DBIx::Class::Componentised Class::Accessor::Grouped/; +use base qw/DBIx::Class::Componentised DBIx::Class::AccessorGroup/; use DBIx::Class::StartupCheck; sub mk_classdata { @@ -27,7 +37,7 @@ sub component_base_class { 'DBIx::Class' } # Always remember to do all digits for the version even if they're 0 # 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.08125'; +$VERSION = '0.08127'; $VERSION = eval $VERSION if $VERSION =~ /_/; # numify for warning-free dev releases @@ -256,6 +266,8 @@ blblack: Brandon L. Black bluefeet: Aran Deltac +bphillips: Brian Phillips + boghead: Bryan Beeley bricas: Brian Cassidy @@ -264,6 +276,8 @@ brunov: Bruno Vecchi caelum: Rafael Kitover +caldrin: Maik Hentsche + castaway: Jess Robinson claco: Christopher H. Laco @@ -286,6 +300,8 @@ dwc: Daniel Westermann-Clark dyfrgi: Michael Leuchtenburg +freetime: Bill Moseley + frew: Arthur Axel "fREW" Schmidt goraxe: Gordon Irving @@ -302,6 +318,8 @@ ilmari: Dagfinn Ilmari MannsEker initself: Mike Baas +jawnsy: Jonathan Yu + jasonmay: Jason May jesper: Jesper Krogh @@ -322,14 +340,20 @@ kaare: Kaare Rasmussen konobi: Scott McWhirter +littlesavage: Alexey Illarionov + lukes: Luke Saunders marcus: Marcus Ramberg mattlaw: Matt Lawrence +mattp: Matt Phillips + michaelr: Michael Reddick +milki: Jonathan Chu + ned: Neil de Carteret nigel: Nigel Metheringham @@ -382,6 +406,8 @@ robkinyon: Rob Kinyon Roman: Roman Filippov +Sadrak: Felix Antonius Wilhelm Ostmann + sc_: Just Another Perl Hacker scotty: Scotty Allen @@ -396,6 +422,10 @@ Squeeks sszabo: Stephan Szabo +talexb: Alex Beamish + +tamias: Ronald J Kimball + teejay : Aaron Trevena Todd Lipcon