From: Arthur Axel 'fREW' Schmidt Date: Wed, 11 Jul 2012 02:55:05 +0000 (-0500) Subject: release v0.08198 X-Git-Tag: v0.08198^0 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=0a7eddc0faa5889d647509ade1018b1b39e964f2;p=dbsrgits%2FDBIx-Class.git release v0.08198 --- diff --git a/Changes b/Changes index a35b6bd..8982ce0 100644 --- a/Changes +++ b/Changes @@ -1,5 +1,10 @@ Revision history for DBIx::Class +0.08198 2012-07-11 03:43 (UTC) + * Fixes + - Fix a number of Win32 Test issues + - Fix silent Oracle connection failures + 0.08197 2012-07-10 10:32 (UTC) * New Features / Changes - Issue a warning when DateTime objects are passed to ->search diff --git a/lib/DBIx/Class.pm b/lib/DBIx/Class.pm index 582152d..1337a28 100644 --- a/lib/DBIx/Class.pm +++ b/lib/DBIx/Class.pm @@ -11,7 +11,7 @@ our $VERSION; # $VERSION declaration must stay up here, ahead of any other package # declarations, as to not confuse various modules attempting to determine # this ones version, whether that be s.c.o. or Module::Metadata, etc -$VERSION = '0.08197'; +$VERSION = '0.08198'; $VERSION = eval $VERSION if $VERSION =~ /_/; # numify for warning-free dev releases diff --git a/lib/DBIx/Class/Storage/DBI.pm b/lib/DBIx/Class/Storage/DBI.pm index 846bcca..d8529cb 100644 --- a/lib/DBIx/Class/Storage/DBI.pm +++ b/lib/DBIx/Class/Storage/DBI.pm @@ -1129,7 +1129,7 @@ sub _dbh_get_info { } my $res; - + try { $res = $self->_get_dbh->get_info($info); }