release 0.900001_05
Arthur Axel "fREW" Schmidt [Thu, 29 Apr 2010 15:33:40 +0000 (15:33 +0000)]
Changes
lib/DBIx/Class/Journal.pm

diff --git a/Changes b/Changes
index 5dedba0..f581edd 100644 (file)
--- a/Changes
+++ b/Changes
@@ -1,4 +1,5 @@
-0.900001_05 2010-04-28
+0.900001_05 2010-04-29
+    - Removed undocumented override of deploy()
     - Added prepopulate_journal() to bootstrap insert logs, for retrofitting (oliver)
     - Added bootstrap_journal() which calls deploy_journal() and then prepopulate_journal() (oliver)
 
index e8b0592..9a20438 100644 (file)
@@ -5,7 +5,7 @@ use base qw/DBIx::Class/;
 use strict;
 use warnings;
 
-our $VERSION = '0.900001_04';
+our $VERSION = '0.900001_05';
 $VERSION = eval $VERSION; # no errors in dev versions
 
 ## On create/insert, add new entry to AuditLog and new content to AuditHistory
@@ -129,7 +129,7 @@ automatically scans your schema and sets up storage for journal entries.
 
  # optional - defaults to all sources
  My::Schema->journal_sources([qw/ table1 table2 /]);
+
  $schema = My::Schema->connect(...);
  $schema->journal_schema_deploy;