From: Matt S Trout Date: Fri, 25 Nov 2005 01:15:47 +0000 (+0000) Subject: Version bumped to 0.03999_03, fix for Auto::PK issues in MySQL tests X-Git-Tag: v0.05005~165^2~1 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=773e30151b762903af9584a7943093170fdae91c;p=dbsrgits%2FDBIx-Class.git Version bumped to 0.03999_03, fix for Auto::PK issues in MySQL tests --- diff --git a/MANIFEST b/MANIFEST index f9561a3..2ff9869 100644 --- a/MANIFEST +++ b/MANIFEST @@ -65,7 +65,6 @@ Makefile.PL MANIFEST This list of files META.yml README -script/nextalyzer.pl t/02pod.t t/03podcoverage.t t/19quotes.t diff --git a/META.yml b/META.yml index 97e20a0..878a16c 100644 --- a/META.yml +++ b/META.yml @@ -1,12 +1,12 @@ --- name: DBIx-Class -version: 0.03999_01 +version: 0.03999_02 author: - Matt S. Trout abstract: Extensible and flexible object <-> relational mapper. license: perl requires: - Class::C3: 0.05 + Class::C3: 0.07 Class::Trigger: 0 DBD::SQLite: 1.08 DBI: 0 @@ -26,7 +26,7 @@ provides: file: lib/DBIx/Class/Storage/DBI.pm DBIx::Class: file: lib/DBIx/Class.pm - version: 0.03999_01 + version: 0.03999_02 DBIx::Class::AccessorGroup: file: lib/DBIx/Class/AccessorGroup.pm DBIx::Class::CDBICompat: diff --git a/README b/README index ea0c835..4dcaf62 100644 --- a/README +++ b/README @@ -8,10 +8,12 @@ DESCRIPTION and making it possible to support some new features like self-joins, distinct, group bys and more. - It's currently considered EXPERIMENTAL - bring this near a production - database at your own risk! The API is *not* fixed yet, although most of - the primitives should be good for the future and any API changes will be - posted to the mailing list before they're committed. + This project is still at an early stage so the maintainers don't make + any absolute promise that full backwards-compatibility will be + supported; however if we can without compromising the improvements we're + trying to make, we will, and any non-compatible changes will merit a + full justification on the mailing list and a CPAN developer release for + people to test against. The community can be found via - diff --git a/lib/DBIx/Class.pm b/lib/DBIx/Class.pm index 127f56a..8ad1a6d 100644 --- a/lib/DBIx/Class.pm +++ b/lib/DBIx/Class.pm @@ -6,7 +6,7 @@ use warnings; use vars qw($VERSION); use base qw/DBIx::Class::Componentised Class::Data::Inheritable/; -$VERSION = '0.03999_02'; +$VERSION = '0.03999_03'; 1; diff --git a/lib/DBIx/Class/PK/Auto.pm b/lib/DBIx/Class/PK/Auto.pm index 73abb33..6928ba7 100644 --- a/lib/DBIx/Class/PK/Auto.pm +++ b/lib/DBIx/Class/PK/Auto.pm @@ -1,6 +1,7 @@ package DBIx::Class::PK::Auto; -use base qw/DBIx::Class::PK/; +#use base qw/DBIx::Class::PK/; +use base qw/DBIx::Class/; use strict; use warnings; diff --git a/lib/DBIx/Class/Test/SQLite.pm b/lib/DBIx/Class/Test/SQLite.pm index 7494f41..a324737 100644 --- a/lib/DBIx/Class/Test/SQLite.pm +++ b/lib/DBIx/Class/Test/SQLite.pm @@ -34,7 +34,7 @@ use strict; use base qw/DBIx::Class/; -__PACKAGE__->load_components(qw/CDBICompat PK::Auto::SQLite Core DB/); +__PACKAGE__->load_components(qw/PK::Auto::SQLite CDBICompat Core DB/); use File::Temp qw/tempfile/; my (undef, $DB) = tempfile();