X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FDBIx%2FClass.pm;h=631069751853971d2e9f414fc0e8b2c091246257;hb=3b4e619d1;hp=7d217ca97ed2f482ebe5775616c9395a09c9f40e;hpb=00ce6c2048daa911610b457dcc69a521a2c85f4c;p=dbsrgits%2FDBIx-Class.git diff --git a/lib/DBIx/Class.pm b/lib/DBIx/Class.pm index 7d217ca..6310697 100644 --- a/lib/DBIx/Class.pm +++ b/lib/DBIx/Class.pm @@ -3,6 +3,18 @@ package DBIx::Class; use strict; use warnings; +our $VERSION; +# 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 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.08192'; + +$VERSION = eval $VERSION if $VERSION =~ /_/; # numify for warning-free dev releases + BEGIN { package DBIx::Class::_ENV_; @@ -21,6 +33,12 @@ BEGIN { : sub () { 0 } ; + # There was a brief period of p5p insanity when $@ was invisible in a DESTROY + *INVISIBLE_DOLLAR_AT = ($] >= 5.013001 and $] <= 5.013007) + ? sub () { 1 } + : sub () { 0 } + ; + # During 5.13 dev cycle HELEMs started to leak on copy *PEEPEENESS = (defined $ENV{DBICTEST_ALL_LEAKS} # request for all tests would force "non-leaky" illusion and vice-versa @@ -41,13 +59,13 @@ BEGIN { else { 0 } } ) ? sub () { 1 } : sub () { 0 }; + } use mro 'c3'; use DBIx::Class::Optional::Dependencies; -use vars qw($VERSION); use base qw/DBIx::Class::Componentised DBIx::Class::AccessorGroup/; use DBIx::Class::StartupCheck; @@ -66,13 +84,6 @@ sub mk_classaccessor { 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.08190_01'; - -$VERSION = eval $VERSION if $VERSION =~ /_/; # numify for warning-free dev releases - sub MODIFY_CODE_ATTRIBUTES { my ($class,$code,@attrs) = @_; $class->mk_classdata('__attr_cache' => {}) @@ -356,6 +367,8 @@ ilmari: Dagfinn Ilmari MannsEker initself: Mike Baas +ironcamel: Naveed Massjouni + jawnsy: Jonathan Yu jasonmay: Jason May