0.01002 - fix email addr typo, doh
Brandon Black [Fri, 3 Feb 2006 23:18:12 +0000 (23:18 +0000)]
Changes
META.yml
README
lib/DBIx/Class/Schema/Loader.pm

diff --git a/Changes b/Changes
index 82d946d..071d36b 100644 (file)
--- a/Changes
+++ b/Changes
@@ -1,5 +1,8 @@
 Revision history for Perl extension DBIx::Class::Schema::Loader
 
+0.01002 Fri Feb  3 23:14:38 UTC 2006
+        - Email address typo :(
+
 0.01001 Fri Feb  3 05:15:41 UTC 2006
         - Fixed up some documentation issues
         - Load C3 at the right time
index 92f44e7..79e5b89 100644 (file)
--- a/META.yml
+++ b/META.yml
@@ -1,8 +1,8 @@
 ---
 name: DBIx-Class-Schema-Loader
-version: 0.01001
+version: 0.01002
 author:
-  - 'Brandon Black, C<bblack@gmail.com>'
+  - 'Brandon Black, C<blblack@gmail.com>'
 abstract: Dynamic definition of a DBIx::Class::Schema
 license: perl
 requires:
@@ -20,7 +20,7 @@ build_requires:
 provides:
   DBIx::Class::Schema::Loader:
     file: lib/DBIx/Class/Schema/Loader.pm
-    version: 0.01001
+    version: 0.01002
   DBIx::Class::Schema::Loader::DB2:
     file: lib/DBIx/Class/Schema/Loader/DB2.pm
   DBIx::Class::Schema::Loader::Generic:
diff --git a/README b/README
index 6016355..c7c1842 100644 (file)
--- a/README
+++ b/README
@@ -76,7 +76,7 @@ METHODS
     for more information on the available loader methods there.
 
 AUTHOR
-    Brandon Black, "bblack@gmail.com"
+    Brandon Black, "blblack@gmail.com"
 
     Based on DBIx::Class::Loader by Sebastian Riedel
 
index 3c84204..3d8fd13 100644 (file)
@@ -10,8 +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
-use vars qw($VERSION);
-$VERSION = '0.01001';
+our $VERSION = '0.01002';
 
 __PACKAGE__->mk_classaccessor('loader');
 
@@ -122,7 +121,7 @@ on the available loader methods there.
 
 =head1 AUTHOR
 
-Brandon Black, C<bblack@gmail.com>
+Brandon Black, C<blblack@gmail.com>
 
 Based on L<DBIx::Class::Loader> by Sebastian Riedel