From: Rafael Kitover Date: Fri, 20 May 2011 14:51:27 +0000 (-0400) Subject: release 0.50 X-Git-Tag: v0.50^0 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=catagits%2FCatalyst-Model-DBIC-Schema.git;a=commitdiff_plain;h=acb5622910fd9ed88b9338fc84c0781d8556f1ae;hp=b34b0affac7741bbb0427d429eb63f96ce9679b3 release 0.50 --- diff --git a/Changes b/Changes index fb49ded..920d5fa 100644 --- a/Changes +++ b/Changes @@ -1,5 +1,9 @@ Revision history for Perl extension Catalyst::Model::DBIC::Schema +0.50 Fri May 20 22:45:07 UTC 2011 + - change repository link to the new git repo + - get t/05testapp.t to run on Win32 + 0.49 Wed May 11 06:03:50 UTC 2011 - make sure storage_type class is loaded before ->isa check in Replicated trait (RT#65791) diff --git a/MANIFEST.SKIP b/MANIFEST.SKIP index 5ead648..1fe9193 100644 --- a/MANIFEST.SKIP +++ b/MANIFEST.SKIP @@ -3,6 +3,7 @@ \bCVS\b ,v$ \B\.svn\b +\B\.git\b # Avoid Makemaker generated and utility files. \bMakefile$ diff --git a/TODO b/TODO deleted file mode 100644 index 1d2b553..0000000 --- a/TODO +++ /dev/null @@ -1,3 +0,0 @@ -timezone and locale support for dates at helper time - -upgrade option for upgrading from S::L 0.04006 and load_classes diff --git a/lib/Catalyst/Helper/Model/DBIC/Schema.pm b/lib/Catalyst/Helper/Model/DBIC/Schema.pm index f899c61..f2dc1c9 100644 --- a/lib/Catalyst/Helper/Model/DBIC/Schema.pm +++ b/lib/Catalyst/Helper/Model/DBIC/Schema.pm @@ -4,7 +4,7 @@ use namespace::autoclean; use Moose; no warnings 'uninitialized'; -our $VERSION = '0.49'; +our $VERSION = '0.50'; $VERSION = eval $VERSION; use Carp; diff --git a/lib/Catalyst/Model/DBIC/Schema.pm b/lib/Catalyst/Model/DBIC/Schema.pm index 38d7cd8..3b2cfc2 100644 --- a/lib/Catalyst/Model/DBIC/Schema.pm +++ b/lib/Catalyst/Model/DBIC/Schema.pm @@ -5,7 +5,7 @@ use mro 'c3'; extends 'Catalyst::Model'; with 'CatalystX::Component::Traits'; -our $VERSION = '0.49'; +our $VERSION = '0.50'; $VERSION = eval $VERSION; use namespace::autoclean; diff --git a/t/05testapp.t b/t/05testapp.t index bc67a15..22fb546 100644 --- a/t/05testapp.t +++ b/t/05testapp.t @@ -30,7 +30,7 @@ my $db = catdir ($cat_dir, 'testdb.db'); my $catalyst_pl; -foreach my $bin (split /[$Config{path_sep}:]/, $ENV{PATH}) { +foreach my $bin (split /(?:$Config{path_sep}|:)/, $ENV{PATH}) { my $file = catfile($bin, 'catalyst.pl'); if (-f $file) { $catalyst_pl = $file;