Fixup after pull from trunk
[dbsrgits/DBIx-Class.git] / lib / DBIx / Class.pm
index bbfdc17..7fb6f60 100644 (file)
@@ -4,10 +4,11 @@ use strict;
 use warnings;
 
 use vars qw($VERSION);
-use base qw/DBIx::Class::Componentised Class::Data::Inheritable/;
+use base qw/DBIx::Class::Componentised Class::Data::Accessor/;
 
-$VERSION = '0.04001';
+sub mk_classdata { shift->mk_classaccessor(@_); }
 
+$VERSION = '0.04999_01';
 
 1;
 
@@ -54,7 +55,7 @@ Some examples where different database connections are useful are:
 different users with different rights
 different databases with the same schema.
 
-=head1 Simple
+=head2 Simple
 
 First you need to create a base class which all other classes will inherit from.
 See L<DBIx::Class::DB> for information on how to do this.
@@ -91,6 +92,8 @@ manual below.
 
 =head2 L<DBIx::Class::PK> - primary key methods
 
+=head2 L<DBIx::Class::ResultSet> - search result-set methods
+
 =head2 L<DBIx::Class::Relationship> - relationships between tables
 
 =head1 AUTHOR