Skip to content

Commit

Permalink
Increment to v0.47.
Browse files Browse the repository at this point in the history
  • Loading branch information
theory committed Jul 17, 2011
1 parent b3b0c34 commit 3fba657
Show file tree
Hide file tree
Showing 9 changed files with 11 additions and 9 deletions.
2 changes: 2 additions & 0 deletions Changes
@@ -1,5 +1,7 @@
Revision history for Perl extension DBIx::Connector.

0.47

0.46 2011-07-17T00:47:49
- Eliminated "Use of qw(...) as parentheses is deprecated" warning in
test when running on Perl 5.14.
Expand Down
2 changes: 1 addition & 1 deletion README
@@ -1,4 +1,4 @@
DBIx/Connection version 0.46
DBIx/Connection version 0.47
============================

DBIx::Connector provides a simple interface for fast and safe DBI connection
Expand Down
4 changes: 2 additions & 2 deletions lib/DBIx/Connector.pm
Expand Up @@ -6,7 +6,7 @@ use warnings;
use DBI '1.605';
use DBIx::Connector::Driver;

our $VERSION = '0.46';
our $VERSION = '0.47';

my $die = sub { die @_ };

Expand Down Expand Up @@ -360,7 +360,7 @@ sub svp {

PROXY: {
package DBIx::Connector::Proxy;
our $VERSION = '0.46';
our $VERSION = '0.47';

sub new {
require Carp;
Expand Down
2 changes: 1 addition & 1 deletion lib/DBIx/Connector/Driver.pm
Expand Up @@ -2,7 +2,7 @@ package DBIx::Connector::Driver;

use strict;
use warnings;
our $VERSION = '0.46';
our $VERSION = '0.47';

DRIVERS: {
my %DRIVERS;
Expand Down
2 changes: 1 addition & 1 deletion lib/DBIx/Connector/Driver/MSSQL.pm
Expand Up @@ -3,7 +3,7 @@ package DBIx::Connector::Driver::MSSQL;
use strict;
use warnings;
use base 'DBIx::Connector::Driver';
our $VERSION = '0.46';
our $VERSION = '0.47';

sub savepoint {
my ($self, $dbh, $name) = @_;
Expand Down
2 changes: 1 addition & 1 deletion lib/DBIx/Connector/Driver/Oracle.pm
Expand Up @@ -3,7 +3,7 @@ package DBIx::Connector::Driver::Oracle;
use strict;
use warnings;
use base 'DBIx::Connector::Driver';
our $VERSION = '0.46';
our $VERSION = '0.47';

# Note from https://rt.cpan.org/Ticket/Display.html?id=47005:
# DBD::Oracle has some shutdown state in which it will return 1 on ping as
Expand Down
2 changes: 1 addition & 1 deletion lib/DBIx/Connector/Driver/Pg.pm
Expand Up @@ -3,7 +3,7 @@ package DBIx::Connector::Driver::Pg;
use strict;
use warnings;
use base 'DBIx::Connector::Driver';
our $VERSION = '0.46';
our $VERSION = '0.47';

sub savepoint {
my ($self, $dbh, $name) = @_;
Expand Down
2 changes: 1 addition & 1 deletion lib/DBIx/Connector/Driver/SQLite.pm
Expand Up @@ -3,7 +3,7 @@ package DBIx::Connector::Driver::SQLite;
use strict;
use warnings;
use base 'DBIx::Connector::Driver';
our $VERSION = '0.46';
our $VERSION = '0.47';

BEGIN {
# Only install support for savepoints if SQLite supports them.
Expand Down
2 changes: 1 addition & 1 deletion lib/DBIx/Connector/Driver/mysql.pm
Expand Up @@ -3,7 +3,7 @@ package DBIx::Connector::Driver::mysql;
use strict;
use warnings;
use base 'DBIx::Connector::Driver';
our $VERSION = '0.46';
our $VERSION = '0.47';

sub _connect {
my ($self, $dbh) = @_;
Expand Down

0 comments on commit 3fba657

Please sign in to comment.