Skip to content

Commit

Permalink
Increment to v0.45.
Browse files Browse the repository at this point in the history
  • Loading branch information
theory committed Mar 20, 2011
1 parent af5af66 commit b43e63d
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.45

0.44 2011-03-20T01:04:59
- Fixed bug with the MySQL driver introduced by the auto-reconnection
fix in 0.43. Sorry for the lame mistake. [Lee Aylward]
Expand Down
2 changes: 1 addition & 1 deletion README
@@ -1,4 +1,4 @@
DBIx/Connection version 0.44
DBIx/Connection version 0.45
============================

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.44';
our $VERSION = '0.45';

my $die = sub { die @_ };

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

PROXY: {
package DBIx::Connector::Proxy;
our $VERSION = '0.44';
our $VERSION = '0.45';

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.44';
our $VERSION = '0.45';

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.44';
our $VERSION = '0.45';

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.44';
our $VERSION = '0.45';

# 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.44';
our $VERSION = '0.45';

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.44';
our $VERSION = '0.45';

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.44';
our $VERSION = '0.45';

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

0 comments on commit b43e63d

Please sign in to comment.