Skip to content

Commit 58ab642

Browse files
author
H.Merijn Brand - Tux
committed
Versions
1 parent d15bf69 commit 58ab642

File tree

5 files changed

+14
-11
lines changed

5 files changed

+14
-11
lines changed

.dbi-git

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
setenv PERL5LIB `perl \
22
-e '$a = "/pro/3gl/CPAN";' \
33
-e 'print join ":" => grep { -d } map { ( "$a/$_/blib/lib", "$a/$_/blib/arch" ) }' \
4-
-e ' qw( DBI-git Text-CSV_XS DBI-Test-git SQL-Statement-git DBD-CSV )' \
4+
-e ' qw( DBI Text-CSV_XS DBI-Test-git SQL-Statement-git DBD-CSV )' \
55
`

README

+2-2
Original file line numberDiff line numberDiff line change
@@ -43,8 +43,8 @@ Build/Installation:
4343
cpan DBD::CSV
4444

4545
Or standard build/installation:
46-
gzip -cd DBD-CSV-0.42.tar.gz | tar xf -
47-
cd DBD-CSV-0.42
46+
gzip -cd DBD-CSV-0.43.tar.gz | tar xf -
47+
cd DBD-CSV-0.43
4848
perl Makefile.PL
4949
make test
5050
make install

lib/Bundle/DBD/CSV.pm

+4-4
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ package Bundle::DBD::CSV;
55
use strict;
66
use warnings;
77

8-
our $VERSION = "1.10";
8+
our $VERSION = "1.11";
99

1010
1;
1111

@@ -21,15 +21,15 @@ Bundle::DBD::CSV - A bundle to install the DBD::CSV driver
2121
2222
=head1 CONTENTS
2323
24-
DBI 1.628
24+
DBI 1.630
2525
26-
Text::CSV_XS 1.01
26+
Text::CSV_XS 1.02
2727
2828
SQL::Statement 1.405
2929
3030
DBD::File 0.42
3131
32-
DBD::CSV 0.42
32+
DBD::CSV 0.43
3333
3434
=head1 DESCRIPTION
3535

lib/DBD/CSV.pm

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ use vars qw( @ISA $VERSION $ATTRIBUTION $drh $err $errstr $sqlstate );
2323

2424
@ISA = qw( DBD::File );
2525

26-
$VERSION = "0.42";
26+
$VERSION = "0.43";
2727
$ATTRIBUTION = "DBD::CSV $DBD::CSV::VERSION by H.Merijn Brand";
2828

2929
$err = 0; # holds error code for DBI::err

sandbox/genMETA.pl

+6-3
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,10 @@
5555
DBD::File: 0.42
5656
SQL::Statement: 1.405
5757
Text::CSV_XS: 1.01
58+
recommends:
59+
perl: 5.018001
60+
DBI: 1.630
61+
Text::CSV_XS: 1.02
5862
configure_requires:
5963
ExtUtils::MakeMaker: 0
6064
build_requires:
@@ -65,9 +69,8 @@
6569
Encode: 0
6670
Cwd: 0
6771
charnames: 0
68-
recommends:
69-
perl: 5.016003
70-
Test::More: 0.98
72+
test_recommends:
73+
Test::More: 1.001002
7174
installdirs: site
7275
resources:
7376
license: http://dev.perl.org/licenses/

0 commit comments

Comments
 (0)