From: Brandon Black Date: Fri, 17 Feb 2006 20:31:45 +0000 (+0000) Subject: released 0.02001, Changes updates, etc X-Git-Tag: 0.03000~17 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=17725ccba48aec22eccc9765bd9bae2a2ba3c84a;p=dbsrgits%2FDBIx-Class-Schema-Loader.git released 0.02001, Changes updates, etc --- diff --git a/Build.PL b/Build.PL index a35c472..9fbe1aa 100644 --- a/Build.PL +++ b/Build.PL @@ -5,7 +5,7 @@ my %arguments = ( license => 'perl', module_name => 'DBIx::Class::Schema::Loader', requires => { - 'DBIx::Class' => 0.05005, + 'DBIx::Class' => 0.05006, 'UNIVERSAL::require' => 0.10, 'Lingua::EN::Inflect' => 0, 'Text::Balanced' => 0, diff --git a/Changes b/Changes index 495271c..d63c584 100644 --- a/Changes +++ b/Changes @@ -1,12 +1,15 @@ Revision history for Perl extension DBIx::Class::Schema::Loader -0.02001 Not Yet Released... +0.02001 Fri Feb 17 20:25:40 UTC 2006 - tests fixed up a bit - - auto-loading of on-disk class definitions layered on top - of the generated definitions (create Foo::Schema::Bar, then - also try to ->require it if it exists on disk). - - new parameters components and resultset_components, which do - the obvious for the generated table classes. + - auto-loading of on-disk class definitions layered on top + of the generated definitions (create Foo::Schema::Bar, then + also try to ->require it if it exists on disk). + - new parameters components and resultset_components, which do + the obvious for the generated table classes. + - DBIx::Class pre-req bumped to 0.05006, since Schema::Loader + is virtually gauranteed to cause subtle mod_perl problems + without those fixes. 0.02000 Sun Feb 12 22:43:47 UTC 2006 - Just docs/version update, 0.01004 code released as 0.02000 diff --git a/META.yml b/META.yml index 0e9003b..dddc392 100644 --- a/META.yml +++ b/META.yml @@ -9,7 +9,7 @@ requires: Class::Accessor::Fast: 0.22 Class::C3: 0.09 Class::Data::Accessor: 0.02 - DBIx::Class: 0.05005 + DBIx::Class: 0.05006 Lingua::EN::Inflect: 0 Text::Balanced: 0 UNIVERSAL::require: 0.1 diff --git a/t/lib/DBIx/Class/TestRSComponent.pm b/t/lib/DBIx/Class/TestRSComponent.pm index 6744a64..e6808ad 100644 --- a/t/lib/DBIx/Class/TestRSComponent.pm +++ b/t/lib/DBIx/Class/TestRSComponent.pm @@ -1,6 +1,6 @@ package DBIx::Class::TestRSComponent; use base qw/DBIx::Class::ResultSet/; -sub dbix_class_testrscomponent : ResultSet { 'dbix_class_testrscomponent works' } +sub dbix_class_testrscomponent { 'dbix_class_testrscomponent works' } 1;