From: Cory G Watson Date: Wed, 31 Dec 2008 13:19:29 +0000 (+0000) Subject: Fix oddly formatted error message (and bump version) X-Git-Tag: v0.26~60 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=catagits%2FCatalyst-Model-DBIC-Schema.git;a=commitdiff_plain;h=460e3ac885871257b43e45a90293ab7f53df3d43 Fix oddly formatted error message (and bump version) --- diff --git a/Changes b/Changes index 09bcbf3..dd0f708 100644 --- a/Changes +++ b/Changes @@ -1,5 +1,8 @@ Revision history for Perl extension Catalyst::Model::DBIC::Schema +0.22 Pending + - Fix oddly formatted error message. + 0.21 Fri Aug 22 00:26:05 UTC 2008 - doc fix (RT #31848) - connection_info can be just the DSN instead of an arrayref diff --git a/lib/Catalyst/Model/DBIC/Schema.pm b/lib/Catalyst/Model/DBIC/Schema.pm index d9000cd..a1eb766 100644 --- a/lib/Catalyst/Model/DBIC/Schema.pm +++ b/lib/Catalyst/Model/DBIC/Schema.pm @@ -3,7 +3,7 @@ package Catalyst::Model::DBIC::Schema; use strict; use warnings; -our $VERSION = '0.21'; +our $VERSION = '0.22'; use base qw/Catalyst::Model Class::Accessor::Fast Class::Data::Accessor/; use NEXT; @@ -301,8 +301,8 @@ sub new { } else { croak "Either ->config->{connect_info} must be defined for $class" - . " or $schema_class must have connect info defined on it" - . "Here's what we got:\n" + . " or $schema_class must have connect info defined on it." + . " Here's what we got:\n" . Dumper($self); } }