Release shipped, Changes update and version bumped
Matt S Trout [Sat, 14 Jan 2006 07:19:58 +0000 (07:19 +0000)]
Changes
MANIFEST
README
lib/DBIx/Class.pm

diff --git a/Changes b/Changes
index 1a34483..92853a3 100644 (file)
--- 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)
index d8ae2be..9cd4df2 100644 (file)
--- 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 (file)
--- 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.
 
index 7e19c05..f0deb88 100644 (file)
@@ -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;