From: Matt S Trout Date: Sat, 25 Mar 2006 18:08:38 +0000 (+0000) Subject: 0.06000 changes X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=eaefb953638f736ee8988251bf8cfc8bedad2563;p=dbsrgits%2FDBIx-Class-Historic.git 0.06000 changes --- diff --git a/Changes b/Changes index 53d01f9..3eef90f 100644 --- a/Changes +++ b/Changes @@ -1,6 +1,8 @@ Revision history for DBIx::Class -0.05999_05 +0.06000 + - Lots of documentation improvements + - Minor tweak to related_resultset to prevent it storing a searched rs - Fixup to columns_info_for when database returns type(size) - Made do_txn respect void context (on the off-chance somebody cares) - Fix exception text for nonexistent key in ResultSet::find() @@ -37,6 +39,7 @@ Revision history for DBIx::Class - $schema->deploy - HAVING support - prefetch for has_many + - cache attr for resultsets - PK::Auto::* no longer required since Storage::DBI::* handle auto-inc - minor tweak to tests for join edge case - added cascade_copy relationship attribute diff --git a/lib/DBIx/Class.pm b/lib/DBIx/Class.pm index 89e7b83..f78aac8 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.05999_04'; +$VERSION = '0.06000'; sub MODIFY_CODE_ATTRIBUTES { my ($class,$code,@attrs) = @_; diff --git a/lib/DBIx/Class/Cursor.pm b/lib/DBIx/Class/Cursor.pm index 065e195..3c55b69 100644 --- a/lib/DBIx/Class/Cursor.pm +++ b/lib/DBIx/Class/Cursor.pm @@ -28,8 +28,6 @@ information. =head2 new -=back - Virtual method. Returns a new L object. =cut @@ -40,8 +38,6 @@ sub new { =head2 next -=back - Virtual method. Advances the cursor to the next row. =cut @@ -52,8 +48,6 @@ sub next { =head2 reset -=back - Virtual method. Resets the cursor to the beginning. =cut @@ -64,8 +58,6 @@ sub reset { =head2 all -=back - Virtual method. Returns all rows in the L. =cut diff --git a/lib/DBIx/Class/ResultSet.pm b/lib/DBIx/Class/ResultSet.pm index f240e8b..22e9129 100644 --- a/lib/DBIx/Class/ResultSet.pm +++ b/lib/DBIx/Class/ResultSet.pm @@ -1261,6 +1261,8 @@ overview of them: =item Value: ($order_by | \@order_by) +=back + Which column(s) to order the results by. This is currently passed through directly to SQL, so you can give e.g. C for a descending order on the column `year'. diff --git a/lib/DBIx/Class/Storage/DBI/Cursor.pm b/lib/DBIx/Class/Storage/DBI/Cursor.pm index a63b2a6..2550adc 100644 --- a/lib/DBIx/Class/Storage/DBI/Cursor.pm +++ b/lib/DBIx/Class/Storage/DBI/Cursor.pm @@ -30,8 +30,6 @@ information. =head2 new -=back - Returns a new L object. =cut @@ -123,8 +121,6 @@ sub all { =head2 reset -=back - Resets the cursor to the beginning of the L. =cut diff --git a/t/02pod.t b/t/02pod.t index 1647794..ddc2905 100644 --- a/t/02pod.t +++ b/t/02pod.t @@ -2,6 +2,5 @@ use Test::More; eval "use Test::Pod 1.14"; plan skip_all => 'Test::Pod 1.14 required' if $@; -plan skip_all => 'set TEST_POD to enable this test' unless $ENV{TEST_POD}; all_pod_files_ok();