1
0
Fork 0
mirror of https://github.com/DBD-SQLite/DBD-SQLite synced 2025-06-08 14:48:32 -04:00

Setting svn:eol-style to native

This commit is contained in:
Adam Kennedy 2009-04-11 02:59:57 +00:00
parent 3a22c3c28a
commit f8230304bf
6 changed files with 302 additions and 299 deletions

View file

@ -1,5 +1,8 @@
Changes for Perl extension DBD-SQLite.
1.22_05 Sat 11 Apr 2009
- Setting svn:eol-style to native to prevent EOL issues (ADAMK)
1.22_04 Sat 11 Apr 2009
- Adding support parsing attributes out of the DSN (ADAMK)
- Inserted pTHX_/aTHX_ for better efficiency (suggested in #44884 by TIMB) (ISHIGAKI)

View file

@ -8,7 +8,7 @@ use DynaLoader ();
use vars qw($VERSION @ISA);
use vars qw{$err $errstr $drh $sqlite_version};
BEGIN {
$VERSION = '1.22_04';
$VERSION = '1.22_05';
@ISA = ('DynaLoader');
# Driver singleton

View file

@ -9,7 +9,7 @@ use Test::More ();
use vars qw{$VERSION @ISA @EXPORT};
BEGIN {
$VERSION = '1.22_04';
$VERSION = '1.22_05';
@ISA = qw{ Exporter };
@EXPORT = qw{ connect_ok };