From: Brandon Black <blblack@gmail.com>
Date: Mon, 27 Feb 2006 23:59:48 +0000 (+0000)
Subject: 0.02004 release
X-Git-Tag: 0.03000~11
X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=1b311bbba76fa1728cf03cb31e72a4bd8a4572a7;p=dbsrgits%2FDBIx-Class-Schema-Loader.git

0.02004 release
---

diff --git a/Changes b/Changes
index 1897139..ca6d164 100644
--- a/Changes
+++ b/Changes
@@ -1,5 +1,8 @@
 Revision history for Perl extension DBIx::Class::Schema::Loader
 
+0.02004 Mon Feb 27 23:53:17 UTC 2006
+        - Minor fix to debugging message for loading external files
+
 0.02003 Sun Feb 19 20:42:01 UTC 2006
         - Deprecated arguments: dsn, user, password, options
         - New argument: connect_info
diff --git a/META.yml b/META.yml
index c0d03fa..a20dce0 100644
--- a/META.yml
+++ b/META.yml
@@ -1,6 +1,6 @@
 ---
 name: DBIx-Class-Schema-Loader
-version: 0.02003
+version: 0.02004
 author:
   - 'Brandon Black, C<blblack@gmail.com>'
 abstract: Dynamic definition of a DBIx::Class::Schema
@@ -20,7 +20,7 @@ build_requires:
 provides:
   DBIx::Class::Schema::Loader:
     file: lib/DBIx/Class/Schema/Loader.pm
-    version: 0.02003
+    version: 0.02004
   DBIx::Class::Schema::Loader::DB2:
     file: lib/DBIx/Class/Schema/Loader/DB2.pm
   DBIx::Class::Schema::Loader::Generic:
diff --git a/lib/DBIx/Class/Schema/Loader.pm b/lib/DBIx/Class/Schema/Loader.pm
index d93ed3a..5fb8d45 100644
--- a/lib/DBIx/Class/Schema/Loader.pm
+++ b/lib/DBIx/Class/Schema/Loader.pm
@@ -10,7 +10,7 @@ use UNIVERSAL::require;
 # Always remember to do all digits for the version even if they're 0
 # i.e. first release of 0.XX *must* be 0.XX000. This avoids fBSD ports
 # brain damage and presumably various other packaging systems too
-our $VERSION = '0.02003';
+our $VERSION = '0.02004';
 
 __PACKAGE__->mk_classaccessor('loader');