From: John Napiorkowski Date: Thu, 16 Jul 2009 15:03:32 +0000 (+0000) Subject: increased Moose version requirements due to changes in the way type constraints get... X-Git-Tag: v0.08109~75 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=62eabf11c6b4582ce5938d4a55a8626f99ee6829;p=dbsrgits%2FDBIx-Class.git increased Moose version requirements due to changes in the way type constraints get validated, which is not backwardly compatible --- diff --git a/lib/DBIx/Class/Storage/DBI/Replicated.pm b/lib/DBIx/Class/Storage/DBI/Replicated.pm index ea16af9..fe10c28 100644 --- a/lib/DBIx/Class/Storage/DBI/Replicated.pm +++ b/lib/DBIx/Class/Storage/DBI/Replicated.pm @@ -7,9 +7,9 @@ BEGIN { ## use, so we explicitly test for these. my %replication_required = ( - 'Moose' => '0.77', - 'MooseX::AttributeHelpers' => '0.12', - 'MooseX::Types' => '0.10', + 'Moose' => '0.87', + 'MooseX::AttributeHelpers' => '0.20', + 'MooseX::Types' => '0.16', 'namespace::clean' => '0.11', 'Hash::Merge' => '0.11' ); @@ -120,11 +120,11 @@ to force a query to run against Master when needed. Replicated Storage has additional requirements not currently part of L - Moose => 0.77 - MooseX::AttributeHelpers => 0.12 - MooseX::Types => 0.10 - namespace::clean => 0.11 - Hash::Merge => 0.11 + Moose => '0.87', + MooseX::AttributeHelpers => '0.20', + MooseX::Types => '0.16', + namespace::clean => '0.11', + Hash::Merge => '0.11' You will need to install these modules manually via CPAN or make them part of the Makefile for your distribution.