release 0.07008 0.07008
Rafael Kitover [Fri, 25 Feb 2011 01:55:22 +0000 (20:55 -0500)]
30 files changed:
Changes
lib/DBIx/Class/Schema/Loader.pm
lib/DBIx/Class/Schema/Loader/Base.pm
lib/DBIx/Class/Schema/Loader/DBI.pm
lib/DBIx/Class/Schema/Loader/DBI/ADO.pm
lib/DBIx/Class/Schema/Loader/DBI/ADO/MS_Jet.pm
lib/DBIx/Class/Schema/Loader/DBI/ADO/Microsoft_SQL_Server.pm
lib/DBIx/Class/Schema/Loader/DBI/Component/QuotedDefault.pm
lib/DBIx/Class/Schema/Loader/DBI/DB2.pm
lib/DBIx/Class/Schema/Loader/DBI/Informix.pm
lib/DBIx/Class/Schema/Loader/DBI/InterBase.pm
lib/DBIx/Class/Schema/Loader/DBI/MSSQL.pm
lib/DBIx/Class/Schema/Loader/DBI/ODBC.pm
lib/DBIx/Class/Schema/Loader/DBI/ODBC/ACCESS.pm
lib/DBIx/Class/Schema/Loader/DBI/ODBC/Firebird.pm
lib/DBIx/Class/Schema/Loader/DBI/ODBC/Microsoft_SQL_Server.pm
lib/DBIx/Class/Schema/Loader/DBI/ODBC/SQL_Anywhere.pm
lib/DBIx/Class/Schema/Loader/DBI/Oracle.pm
lib/DBIx/Class/Schema/Loader/DBI/Pg.pm
lib/DBIx/Class/Schema/Loader/DBI/SQLAnywhere.pm
lib/DBIx/Class/Schema/Loader/DBI/SQLite.pm
lib/DBIx/Class/Schema/Loader/DBI/Sybase.pm
lib/DBIx/Class/Schema/Loader/DBI/Sybase/Common.pm
lib/DBIx/Class/Schema/Loader/DBI/Sybase/Microsoft_SQL_Server.pm
lib/DBIx/Class/Schema/Loader/DBI/Writing.pm
lib/DBIx/Class/Schema/Loader/DBI/mysql.pm
lib/DBIx/Class/Schema/Loader/RelBuilder.pm
lib/DBIx/Class/Schema/Loader/RelBuilder/Compat/v0_040.pm
lib/DBIx/Class/Schema/Loader/RelBuilder/Compat/v0_05.pm
lib/DBIx/Class/Schema/Loader/RelBuilder/Compat/v0_06.pm

diff --git a/Changes b/Changes
index edf9c38..a6b0a40 100644 (file)
--- a/Changes
+++ b/Changes
@@ -1,5 +1,6 @@
 Revision history for Perl extension DBIx::Class::Schema::Loader
 
+0.07008  2011-02-25 01:54:43
         - rename column_accessor_map to col_accessor_map, the old alias still
           works
         - support MSSQL over DBD::ADO
index 05d0b18..54b517f 100644 (file)
@@ -10,7 +10,7 @@ use Scalar::Util qw/ weaken /;
 # 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.07007';
+our $VERSION = '0.07008';
 
 __PACKAGE__->mk_group_accessors('inherited', qw/
                                 _loader_args
index 86cacf5..9b27a1e 100644 (file)
@@ -25,7 +25,7 @@ use DBIx::Class ();
 use Class::Load 'load_class';
 use namespace::clean;
 
-our $VERSION = '0.07007';
+our $VERSION = '0.07008';
 
 __PACKAGE__->mk_group_ro_accessors('simple', qw/
                                 schema
index 47418b1..a969b8c 100644 (file)
@@ -8,7 +8,7 @@ use Carp::Clan qw/^DBIx::Class/;
 use Try::Tiny;
 use namespace::clean;
 
-our $VERSION = '0.07007';
+our $VERSION = '0.07008';
 
 __PACKAGE__->mk_group_accessors('simple', qw/
     _disable_pk_detection
index caf63ca..c605679 100644 (file)
@@ -7,7 +7,7 @@ use mro 'c3';
 use Carp::Clan qw/^DBIx::Class/;
 use namespace::clean;
 
-our $VERSION = '0.07007';
+our $VERSION = '0.07008';
 
 =head1 NAME
 
index bf28fd0..a607dc6 100644 (file)
@@ -11,7 +11,7 @@ use Carp::Clan qw/^DBIx::Class/;
 use Try::Tiny;
 use namespace::clean;
 
-our $VERSION = '0.07007';
+our $VERSION = '0.07008';
 
 =head1 NAME
 
index f332a9e..5a87a69 100644 (file)
@@ -10,7 +10,7 @@ use mro 'c3';
 use Carp::Clan qw/^DBIx::Class/;
 use namespace::clean;
 
-our $VERSION = '0.07007';
+our $VERSION = '0.07008';
 
 =head1 NAME
 
index a4b9885..9fd895f 100644 (file)
@@ -4,7 +4,7 @@ use strict;
 use warnings;
 use mro 'c3';
 
-our $VERSION = '0.07007';
+our $VERSION = '0.07008';
 
 =head1 NAME
 
index 60d2cf5..c001788 100644 (file)
@@ -9,7 +9,7 @@ use base qw/
 use Carp::Clan qw/^DBIx::Class/;
 use mro 'c3';
 
-our $VERSION = '0.07007';
+our $VERSION = '0.07008';
 
 =head1 NAME
 
index 3d61b64..b916bbf 100644 (file)
@@ -8,7 +8,7 @@ use Carp::Clan qw/^DBIx::Class/;
 use Scalar::Util 'looks_like_number';
 use namespace::clean;
 
-our $VERSION = '0.07007';
+our $VERSION = '0.07008';
 
 =head1 NAME
 
index 32b51ad..d4270b8 100644 (file)
@@ -8,7 +8,7 @@ use Carp::Clan qw/^DBIx::Class/;
 use List::Util 'first';
 use namespace::clean;
 
-our $VERSION = '0.07007';
+our $VERSION = '0.07008';
 
 =head1 NAME
 
index bdac624..5cfc69e 100644 (file)
@@ -8,7 +8,7 @@ use Carp::Clan qw/^DBIx::Class/;
 use Try::Tiny;
 use namespace::clean;
 
-our $VERSION = '0.07007';
+our $VERSION = '0.07008';
 
 =head1 NAME
 
index cb33593..c5b892d 100644 (file)
@@ -7,7 +7,7 @@ use mro 'c3';
 use Carp::Clan qw/^DBIx::Class/;
 use namespace::clean;
 
-our $VERSION = '0.07007';
+our $VERSION = '0.07008';
 
 =head1 NAME
 
index 766024e..e718f6d 100644 (file)
@@ -10,7 +10,7 @@ use Carp::Clan qw/^DBIx::Class/;
 use Try::Tiny;
 use namespace::clean;
 
-our $VERSION = '0.07007';
+our $VERSION = '0.07008';
 
 __PACKAGE__->mk_group_accessors('simple', qw/
     __ado_connection
index b7d57ac..3837ceb 100644 (file)
@@ -9,7 +9,7 @@ use base qw/
 use Carp::Clan qw/^DBIx::Class/;
 use mro 'c3';
 
-our $VERSION = '0.07007';
+our $VERSION = '0.07008';
 
 =head1 NAME
 
index 2efaefe..b3a47f4 100644 (file)
@@ -8,7 +8,7 @@ use base qw/
 use Carp::Clan qw/^DBIx::Class/;
 use mro 'c3';
 
-our $VERSION = '0.07007';
+our $VERSION = '0.07008';
 
 =head1 NAME
 
index dc42338..c3c300f 100644 (file)
@@ -8,7 +8,7 @@ use base qw/
 use Carp::Clan qw/^DBIx::Class/;
 use mro 'c3';
 
-our $VERSION = '0.07007';
+our $VERSION = '0.07008';
 
 =head1 NAME
 
index 9099d88..27ff5d3 100644 (file)
@@ -9,7 +9,7 @@ use base qw/
 use Carp::Clan qw/^DBIx::Class/;
 use mro 'c3';
 
-our $VERSION = '0.07007';
+our $VERSION = '0.07008';
 
 =head1 NAME
 
index 5573276..87e3f1d 100644 (file)
@@ -9,7 +9,7 @@ use base qw/
 use Carp::Clan qw/^DBIx::Class/;
 use mro 'c3';
 
-our $VERSION = '0.07007';
+our $VERSION = '0.07008';
 
 =head1 NAME
 
index 711c525..acd5538 100644 (file)
@@ -9,7 +9,7 @@ use base qw/
 /;
 use Carp::Clan qw/^DBIx::Class/;
 
-our $VERSION = '0.07007';
+our $VERSION = '0.07008';
 
 =head1 NAME
 
index e7e2633..dab20d7 100644 (file)
@@ -9,7 +9,7 @@ use base qw/
 use Carp::Clan qw/^DBIx::Class/;
 use mro 'c3';
 
-our $VERSION = '0.07007';
+our $VERSION = '0.07008';
 
 =head1 NAME
 
index 381972a..d6212e2 100644 (file)
@@ -6,7 +6,7 @@ use base 'DBIx::Class::Schema::Loader::DBI::Sybase::Common';
 use Carp::Clan qw/^DBIx::Class/;
 use mro 'c3';
 
-our $VERSION = '0.07007';
+our $VERSION = '0.07008';
 
 =head1 NAME
 
index bcd978e..f0004d1 100644 (file)
@@ -6,7 +6,7 @@ use base 'DBIx::Class::Schema::Loader::DBI';
 use Carp::Clan qw/^DBIx::Class/;
 use mro 'c3';
 
-our $VERSION = '0.07007';
+our $VERSION = '0.07008';
 
 =head1 NAME
 
index d44cd2f..be5a718 100644 (file)
@@ -6,7 +6,7 @@ use base 'DBIx::Class::Schema::Loader::DBI::MSSQL';
 use Carp::Clan qw/^DBIx::Class/;
 use mro 'c3';
 
-our $VERSION = '0.07007';
+our $VERSION = '0.07008';
 
 =head1 NAME
 
index 0611143..e39818e 100644 (file)
@@ -1,7 +1,7 @@
 package DBIx::Class::Schema::Loader::DBI::Writing;
 use strict;
 
-our $VERSION = '0.07007';
+our $VERSION = '0.07008';
 
 # Empty. POD only.
 
index 2a711fa..d821cdc 100644 (file)
@@ -6,7 +6,7 @@ use base 'DBIx::Class::Schema::Loader::DBI';
 use Carp::Clan qw/^DBIx::Class/;
 use mro 'c3';
 
-our $VERSION = '0.07007';
+our $VERSION = '0.07008';
 
 =head1 NAME
 
index b7351a8..d1e11c3 100644 (file)
@@ -15,7 +15,7 @@ use Class::Inspector ();
 use List::MoreUtils 'apply';
 use namespace::clean;
 
-our $VERSION = '0.07007';
+our $VERSION = '0.07008';
 
 # Glossary:
 #
index 70e84fd..7d7dc86 100644 (file)
@@ -7,7 +7,7 @@ use base 'DBIx::Class::Schema::Loader::RelBuilder::Compat::v0_05';
 use Carp::Clan qw/^DBIx::Class/;
 use Lingua::EN::Inflect::Number ();
 
-our $VERSION = '0.07007';
+our $VERSION = '0.07008';
 
 sub _relnames_and_method {
     my ( $self, $local_moniker, $rel, $cond, $uniqs, $counters ) = @_;
index 7bb858b..36900cb 100644 (file)
@@ -7,7 +7,7 @@ use base 'DBIx::Class::Schema::Loader::RelBuilder::Compat::v0_06';
 use Carp::Clan qw/^DBIx::Class/;
 use Lingua::EN::Inflect::Number ();
 
-our $VERSION = '0.07007';
+our $VERSION = '0.07008';
 
 sub _to_PL {
     my ($self, $name) = @_;
index 2c8f5f3..499c253 100644 (file)
@@ -7,7 +7,7 @@ use base 'DBIx::Class::Schema::Loader::RelBuilder';
 use Carp::Clan qw/^DBIx::Class/;
 use Lingua::EN::Inflect::Phrase ();
 
-our $VERSION = '0.07007';
+our $VERSION = '0.07008';
 
 sub _normalize_name {
     my ($self, $name) = @_;