From: Matt S Trout Date: Sat, 14 Jan 2006 07:19:58 +0000 (+0000) Subject: Release shipped, Changes update and version bumped X-Git-Tag: v0.05005~117^2~56 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=9ce9ec1036c3a67b4087b3f4a90bca09463c1e03;p=dbsrgits%2FDBIx-Class.git Release shipped, Changes update and version bumped --- diff --git a/Changes b/Changes index 1a34483..92853a3 100644 --- a/Changes +++ b/Changes @@ -1,5 +1,10 @@ Revision history for DBIx::Class +0.04999_02 2006-01-14 07:17:35 + - Schema is now self-contained; no requirement for co-operation + - add_relationship, relationships, relationship_info, has_relationship + - relationship handling on ResultSource + - all table handling now in Table.pm / ResultSource.pm - added GROUP BY and DISTINCT support - hacked around SQL::Abstract::Limit some more in DBIC::SQL::Abstract (this may have fixed complex quoting) diff --git a/MANIFEST b/MANIFEST index d8ae2be..9cd4df2 100644 --- a/MANIFEST +++ b/MANIFEST @@ -40,6 +40,7 @@ lib/DBIx/Class/Manual/Troubleshooting.pod lib/DBIx/Class/ObjectCache.pm lib/DBIx/Class/PK.pm lib/DBIx/Class/PK/Auto.pm +lib/DBIx/Class/PK/Auto/DB2.pm lib/DBIx/Class/PK/Auto/MSSQL.pm lib/DBIx/Class/PK/Auto/MySQL.pm lib/DBIx/Class/PK/Auto/Oracle.pm @@ -57,6 +58,7 @@ lib/DBIx/Class/Relationship/ManyToMany.pm lib/DBIx/Class/Relationship/ProxyMethods.pm lib/DBIx/Class/ResultSet.pm lib/DBIx/Class/ResultSetInstance.pm +lib/DBIx/Class/ResultSource.pm lib/DBIx/Class/Row.pm lib/DBIx/Class/Schema.pm lib/DBIx/Class/Storage/DBI.pm @@ -135,6 +137,7 @@ t/lib/DBICTest/BasicRels.pm t/lib/DBICTest/HelperRels.pm t/lib/DBICTest/Schema.pm t/lib/DBICTest/Schema/Artist.pm +t/lib/DBICTest/Schema/ArtistUndirectedMap.pm t/lib/DBICTest/Schema/BasicRels.pm t/lib/DBICTest/Schema/CD.pm t/lib/DBICTest/Schema/CD_to_Producer.pm @@ -148,7 +151,9 @@ t/lib/DBICTest/Schema/SelfRefAlias.pm t/lib/DBICTest/Schema/Tag.pm t/lib/DBICTest/Schema/Track.pm t/lib/DBICTest/Schema/TwoKeys.pm +t/lib/DBICTest/Setup.pm t/run/01core.tl +t/run/01core.tl.rej t/run/04db.tl t/run/05multipk.tl t/run/06relationship.tl diff --git a/README b/README index 714db98..4b49b4f 100644 --- a/README +++ b/README @@ -87,6 +87,14 @@ CONTRIBUTORS Paul Makepeace + CL Kao + + Jess Robinson + + Marcus Ramberg + + Will Hawes + LICENSE You may distribute this code under the same terms as Perl itself. diff --git a/lib/DBIx/Class.pm b/lib/DBIx/Class.pm index 7e19c05..f0deb88 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.04999_02'; +$VERSION = '0.04999_03'; 1;