Changes updated. 0.04999_01 away
Matt S Trout [Tue, 27 Dec 2005 03:48:20 +0000 (03:48 +0000)]
Changes
MANIFEST
lib/DBIx/Class/ResultSet.pm

diff --git a/Changes b/Changes
index 7320d9a..5bdd226 100644 (file)
--- a/Changes
+++ b/Changes
@@ -1,5 +1,13 @@
 Revision history for DBIx::Class
 
+0.04999_01 2005-12-27 03:33:42
+        - search and related methods moved to ResultSet
+        - select and as added to ResultSet attrs
+        - added DBIx::Class::Table and TableInstance for table-per-class
+        - added DBIx::Class::ResultSetInstance which handles proxying
+          search etc. as a superclass of DBIx::Class::DB
+        - assorted test and code cleanup work
+
 0.04001 2005-12-13 22:00:00
         - Fix so set_inflated_column calls set_column
         - Syntax errors in relationship classes are now reported
index 879a99f..425afd4 100644 (file)
--- a/MANIFEST
+++ b/MANIFEST
@@ -54,13 +54,16 @@ lib/DBIx/Class/Relationship/HasMany.pm
 lib/DBIx/Class/Relationship/HasOne.pm
 lib/DBIx/Class/Relationship/ProxyMethods.pm
 lib/DBIx/Class/ResultSet.pm
+lib/DBIx/Class/ResultSetInstance.pm
 lib/DBIx/Class/Row.pm
 lib/DBIx/Class/Schema.pm
 lib/DBIx/Class/Storage/DBI.pm
 lib/DBIx/Class/Storage/DBI/Cursor.pm
 lib/DBIx/Class/Table.pm
+lib/DBIx/Class/TableInstance.pm
 lib/DBIx/Class/Test/SQLite.pm
 lib/DBIx/Class/UUIDColumns.pm
+lib/DBIx/Class/Validation.pm
 Makefile.PL
 MANIFEST                       This list of files
 META.yml
@@ -94,7 +97,6 @@ t/cdbi-t/02-Film.t
 t/cdbi-t/03-subclassing.t
 t/cdbi-t/04-lazy.t
 t/cdbi-t/06-hasa.t
-t/cdbi-t/08-inheritcols.t
 t/cdbi-t/09-has_many.t
 t/cdbi-t/11-triggers.t
 t/cdbi-t/12-filter.t
index f2fdcdc..9c615d7 100644 (file)
@@ -69,7 +69,6 @@ sub new {
   }
   my $new = {
     source => $source,
-    result_class => $source->result_class,
     cond => $attrs->{where},
     from => $attrs->{from},
     count => undef,