release 0.50 v0.50
Rafael Kitover [Fri, 20 May 2011 14:51:27 +0000 (10:51 -0400)]
Changes
MANIFEST.SKIP
TODO [deleted file]
lib/Catalyst/Helper/Model/DBIC/Schema.pm
lib/Catalyst/Model/DBIC/Schema.pm
t/05testapp.t

diff --git a/Changes b/Changes
index fb49ded..920d5fa 100644 (file)
--- 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)
index 5ead648..1fe9193 100644 (file)
@@ -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 (file)
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
index f899c61..f2dc1c9 100644 (file)
@@ -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;
index 38d7cd8..3b2cfc2 100644 (file)
@@ -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;
index bc67a15..22fb546 100644 (file)
@@ -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;