Skip to content

Commit

Permalink
Release 0.07045
Browse files Browse the repository at this point in the history
  • Loading branch information
ilmari committed Jan 22, 2016
1 parent 9006286 commit dc783fa
Show file tree
Hide file tree
Showing 32 changed files with 34 additions and 31 deletions.
3 changes: 3 additions & 0 deletions Changes
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
Revision history for Perl extension DBIx::Class::Schema::Loader

0.07045 2016-01-22
- Regenerate tarball without author-mode test dependencies

0.07044 2016-01-22
- Fix Pg date/time types with zero fractional second digits
- Add support for nested hashref form of col_accessor_map
Expand Down
2 changes: 1 addition & 1 deletion lib/DBIx/Class/Schema/Loader.pm
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ use namespace::clean;
# 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.07044';
our $VERSION = '0.07045';

__PACKAGE__->mk_group_accessors('inherited', qw/
_loader_args
Expand Down
2 changes: 1 addition & 1 deletion lib/DBIx/Class/Schema/Loader/Base.pm
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ use List::Util qw/all any none/;
use File::Temp 'tempfile';
use namespace::clean;

our $VERSION = '0.07044';
our $VERSION = '0.07045';

__PACKAGE__->mk_group_ro_accessors('simple', qw/
schema
Expand Down
2 changes: 1 addition & 1 deletion lib/DBIx/Class/Schema/Loader/DBI.pm
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ use Carp::Clan qw/^DBIx::Class/;
use namespace::clean;
use DBIx::Class::Schema::Loader::Table ();

our $VERSION = '0.07044';
our $VERSION = '0.07045';

__PACKAGE__->mk_group_accessors('simple', qw/
_disable_pk_detection
Expand Down
2 changes: 1 addition & 1 deletion lib/DBIx/Class/Schema/Loader/DBI/ADO.pm
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ use warnings;
use base 'DBIx::Class::Schema::Loader::DBI';
use mro 'c3';

our $VERSION = '0.07044';
our $VERSION = '0.07045';

=head1 NAME
Expand Down
2 changes: 1 addition & 1 deletion lib/DBIx/Class/Schema/Loader/DBI/ADO/MS_Jet.pm
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ use mro 'c3';
use Try::Tiny;
use namespace::clean;

our $VERSION = '0.07044';
our $VERSION = '0.07045';

=head1 NAME
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ use DBIx::Class::Schema::Loader::Utils qw/sigwarn_silencer/;

use namespace::clean;

our $VERSION = '0.07044';
our $VERSION = '0.07045';

=head1 NAME
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ use warnings;
use base 'DBIx::Class::Schema::Loader::DBI';
use mro 'c3';

our $VERSION = '0.07044';
our $VERSION = '0.07045';

=head1 NAME
Expand Down
2 changes: 1 addition & 1 deletion lib/DBIx/Class/Schema/Loader/DBI/DB2.pm
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ use namespace::clean;

use DBIx::Class::Schema::Loader::Table ();

our $VERSION = '0.07044';
our $VERSION = '0.07045';

=head1 NAME
Expand Down
2 changes: 1 addition & 1 deletion lib/DBIx/Class/Schema/Loader/DBI/Firebird.pm
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ use warnings;
use base qw/DBIx::Class::Schema::Loader::DBI::InterBase/;
use mro 'c3';

our $VERSION = '0.07044';
our $VERSION = '0.07045';

=head1 NAME
Expand Down
2 changes: 1 addition & 1 deletion lib/DBIx/Class/Schema/Loader/DBI/Informix.pm
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ use Try::Tiny;
use namespace::clean;
use DBIx::Class::Schema::Loader::Table::Informix ();

our $VERSION = '0.07044';
our $VERSION = '0.07045';

=head1 NAME
Expand Down
2 changes: 1 addition & 1 deletion lib/DBIx/Class/Schema/Loader/DBI/InterBase.pm
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ use List::Util 'first';
use namespace::clean;
use DBIx::Class::Schema::Loader::Table ();

our $VERSION = '0.07044';
our $VERSION = '0.07045';

sub _supports_db_schema { 0 }

Expand Down
2 changes: 1 addition & 1 deletion lib/DBIx/Class/Schema/Loader/DBI/MSSQL.pm
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ use namespace::clean;

use DBIx::Class::Schema::Loader::Table::Sybase ();

our $VERSION = '0.07044';
our $VERSION = '0.07045';

=head1 NAME
Expand Down
2 changes: 1 addition & 1 deletion lib/DBIx/Class/Schema/Loader/DBI/ODBC.pm
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ use warnings;
use base 'DBIx::Class::Schema::Loader::DBI';
use mro 'c3';

our $VERSION = '0.07044';
our $VERSION = '0.07045';

=head1 NAME
Expand Down
2 changes: 1 addition & 1 deletion lib/DBIx/Class/Schema/Loader/DBI/ODBC/ACCESS.pm
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ use Try::Tiny;
use namespace::clean;
use DBIx::Class::Schema::Loader::Table ();

our $VERSION = '0.07044';
our $VERSION = '0.07045';

__PACKAGE__->mk_group_accessors('simple', qw/
__ado_connection
Expand Down
2 changes: 1 addition & 1 deletion lib/DBIx/Class/Schema/Loader/DBI/ODBC/Firebird.pm
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ use base qw/
/;
use mro 'c3';

our $VERSION = '0.07044';
our $VERSION = '0.07045';

=head1 NAME
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ use base qw/
/;
use mro 'c3';

our $VERSION = '0.07044';
our $VERSION = '0.07045';

=head1 NAME
Expand Down
2 changes: 1 addition & 1 deletion lib/DBIx/Class/Schema/Loader/DBI/ODBC/SQL_Anywhere.pm
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ use base qw/
/;
use mro 'c3';

our $VERSION = '0.07044';
our $VERSION = '0.07045';

=head1 NAME
Expand Down
2 changes: 1 addition & 1 deletion lib/DBIx/Class/Schema/Loader/DBI/Oracle.pm
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ use Try::Tiny;
use DBIx::Class::Schema::Loader::Utils qw/sigwarn_silencer/;
use namespace::clean;

our $VERSION = '0.07044';
our $VERSION = '0.07045';

=head1 NAME
Expand Down
2 changes: 1 addition & 1 deletion lib/DBIx/Class/Schema/Loader/DBI/Pg.pm
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ use warnings;
use base 'DBIx::Class::Schema::Loader::DBI::Component::QuotedDefault';
use mro 'c3';

our $VERSION = '0.07044';
our $VERSION = '0.07045';

=head1 NAME
Expand Down
2 changes: 1 addition & 1 deletion lib/DBIx/Class/Schema/Loader/DBI/SQLAnywhere.pm
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ use List::Util 'any';
use namespace::clean;
use DBIx::Class::Schema::Loader::Table ();

our $VERSION = '0.07044';
our $VERSION = '0.07045';

=head1 NAME
Expand Down
2 changes: 1 addition & 1 deletion lib/DBIx/Class/Schema/Loader/DBI/SQLite.pm
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ use base 'DBIx::Class::Schema::Loader::DBI::Component::QuotedDefault';
use mro 'c3';
use DBIx::Class::Schema::Loader::Table ();

our $VERSION = '0.07044';
our $VERSION = '0.07045';

=head1 NAME
Expand Down
2 changes: 1 addition & 1 deletion lib/DBIx/Class/Schema/Loader/DBI/Sybase.pm
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ use namespace::clean;

use DBIx::Class::Schema::Loader::Table::Sybase ();

our $VERSION = '0.07044';
our $VERSION = '0.07045';

=head1 NAME
Expand Down
2 changes: 1 addition & 1 deletion lib/DBIx/Class/Schema/Loader/DBI/Sybase/Common.pm
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ use warnings;
use base 'DBIx::Class::Schema::Loader::DBI';
use mro 'c3';

our $VERSION = '0.07044';
our $VERSION = '0.07045';

=head1 NAME
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ use warnings;
use base 'DBIx::Class::Schema::Loader::DBI::MSSQL';
use mro 'c3';

our $VERSION = '0.07044';
our $VERSION = '0.07045';

=head1 NAME
Expand Down
2 changes: 1 addition & 1 deletion lib/DBIx/Class/Schema/Loader/DBI/Writing.pm
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ package DBIx::Class::Schema::Loader::DBI::Writing;
use strict;
use warnings;

our $VERSION = '0.07044';
our $VERSION = '0.07045';

# Empty. POD only.

Expand Down
2 changes: 1 addition & 1 deletion lib/DBIx/Class/Schema/Loader/DBI/mysql.pm
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ use DBIx::Class::Schema::Loader::Utils qw/sigwarn_silencer/;
use namespace::clean;
use DBIx::Class::Schema::Loader::Table ();

our $VERSION = '0.07044';
our $VERSION = '0.07045';

=head1 NAME
Expand Down
2 changes: 1 addition & 1 deletion lib/DBIx/Class/Schema/Loader/RelBuilder.pm
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ use String::ToIdentifier::EN::Unicode ();
use Class::Unload ();
use Class::Inspector ();

our $VERSION = '0.07044';
our $VERSION = '0.07045';

# Glossary:
#
Expand Down
2 changes: 1 addition & 1 deletion lib/DBIx/Class/Schema/Loader/RelBuilder/Compat/v0_040.pm
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ use warnings;
use base 'DBIx::Class::Schema::Loader::RelBuilder::Compat::v0_05';
use mro 'c3';

our $VERSION = '0.07044';
our $VERSION = '0.07045';

sub _relnames_and_method {
my ( $self, $local_moniker, $rel, $cond, $uniqs, $counters ) = @_;
Expand Down
2 changes: 1 addition & 1 deletion lib/DBIx/Class/Schema/Loader/RelBuilder/Compat/v0_05.pm
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ use DBIx::Class::Schema::Loader::Utils 'array_eq';
use namespace::clean;
use Lingua::EN::Inflect::Number ();

our $VERSION = '0.07044';
our $VERSION = '0.07045';

sub _to_PL {
my ($self, $name) = @_;
Expand Down
2 changes: 1 addition & 1 deletion lib/DBIx/Class/Schema/Loader/RelBuilder/Compat/v0_06.pm
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ use warnings;
use base 'DBIx::Class::Schema::Loader::RelBuilder::Compat::v0_07';
use mro 'c3';

our $VERSION = '0.07044';
our $VERSION = '0.07045';

sub _normalize_name {
my ($self, $name) = @_;
Expand Down
2 changes: 1 addition & 1 deletion lib/DBIx/Class/Schema/Loader/RelBuilder/Compat/v0_07.pm
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ L<DBIx::Class::Schema::Loader::RelBuilder>.
=cut

our $VERSION = '0.07044';
our $VERSION = '0.07045';

sub _strip_id_postfix {
my ($self, $name) = @_;
Expand Down

0 comments on commit dc783fa

Please sign in to comment.