Skip to content

Commit

Permalink
release 0.59
Browse files Browse the repository at this point in the history
  • Loading branch information
ap committed Jul 2, 2023
1 parent a7046b5 commit 6c0c1c4
Show file tree
Hide file tree
Showing 10 changed files with 12 additions and 9 deletions.
3 changes: 3 additions & 0 deletions Changes
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
Release history for DBIx-Connector

0.59 Sun 02 Jul 2023
- Fix for Windows t/load.t failures

0.58 Mon 29 Aug 2022
- No functional changes
- Updated packaging and package metadata
Expand Down
2 changes: 1 addition & 1 deletion inc/boilerplate.pl
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ sub mkparentdirs {
my ( $main_module ) = map { s!-!/!g; s!^!lib/! if -d 'lib'; -f "$_.pod" ? "$_.pod" : "$_.pm" } $meta->name;

die unless -e 'Makefile.PL';
$file{'README'} = Pod::Readme::Brief->new( slurp $main_module )->render( installer => 'eumm' );
$file{'README'} = Pod::Readme::Brief->new( slurp $main_module )->render( installer => 'eumm', width => 72 );

my @manifest = split /\n/, slurp 'MANIFEST';
my %manifest = map /\A([^\s#]+)()/, @manifest;
Expand Down
2 changes: 1 addition & 1 deletion lib/DBIx/Connector.pm
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ package DBIx::Connector;
use DBI '1.605';
use DBIx::Connector::Driver;

our $VERSION = '0.58';
our $VERSION = '0.59';

sub new {
my $class = shift;
Expand Down
2 changes: 1 addition & 1 deletion lib/DBIx/Connector/Driver.pm
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ use strict; use warnings;

package DBIx::Connector::Driver;

our $VERSION = '0.58';
our $VERSION = '0.59';

DRIVERS: {
my %DRIVERS;
Expand Down
2 changes: 1 addition & 1 deletion lib/DBIx/Connector/Driver/Firebird.pm
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ package DBIx::Connector::Driver::Firebird;

use DBIx::Connector::Driver;

our $VERSION = '0.58';
our $VERSION = '0.59';
our @ISA = qw( DBIx::Connector::Driver );

sub savepoint {
Expand Down
2 changes: 1 addition & 1 deletion lib/DBIx/Connector/Driver/MSSQL.pm
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ package DBIx::Connector::Driver::MSSQL;

use DBIx::Connector::Driver;

our $VERSION = '0.58';
our $VERSION = '0.59';
our @ISA = qw( DBIx::Connector::Driver );

sub savepoint {
Expand Down
2 changes: 1 addition & 1 deletion lib/DBIx/Connector/Driver/Oracle.pm
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ package DBIx::Connector::Driver::Oracle;

use DBIx::Connector::Driver;

our $VERSION = '0.58';
our $VERSION = '0.59';
our @ISA = qw( DBIx::Connector::Driver );

# Note from https://rt.cpan.org/Ticket/Display.html?id=47005:
Expand Down
2 changes: 1 addition & 1 deletion lib/DBIx/Connector/Driver/Pg.pm
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ package DBIx::Connector::Driver::Pg;

use DBIx::Connector::Driver;

our $VERSION = '0.58';
our $VERSION = '0.59';
our @ISA = qw( DBIx::Connector::Driver );

sub savepoint {
Expand Down
2 changes: 1 addition & 1 deletion lib/DBIx/Connector/Driver/SQLite.pm
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ package DBIx::Connector::Driver::SQLite;

use DBIx::Connector::Driver;

our $VERSION = '0.58';
our $VERSION = '0.59';
our @ISA = qw( DBIx::Connector::Driver );

sub _connect {
Expand Down
2 changes: 1 addition & 1 deletion lib/DBIx/Connector/Driver/mysql.pm
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ package DBIx::Connector::Driver::mysql;

use DBIx::Connector::Driver;

our $VERSION = '0.58';
our $VERSION = '0.59';
our @ISA = qw( DBIx::Connector::Driver );

sub _connect {
Expand Down

0 comments on commit 6c0c1c4

Please sign in to comment.