mirror of
https://github.com/DBD-SQLite/DBD-SQLite
synced 2025-06-08 22:58:17 -04:00
Setting svn:eol-style to native
This commit is contained in:
parent
3a22c3c28a
commit
f8230304bf
6 changed files with 302 additions and 299 deletions
3
Changes
3
Changes
|
@ -1,5 +1,8 @@
|
||||||
Changes for Perl extension DBD-SQLite.
|
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
|
1.22_04 Sat 11 Apr 2009
|
||||||
- Adding support parsing attributes out of the DSN (ADAMK)
|
- Adding support parsing attributes out of the DSN (ADAMK)
|
||||||
- Inserted pTHX_/aTHX_ for better efficiency (suggested in #44884 by TIMB) (ISHIGAKI)
|
- Inserted pTHX_/aTHX_ for better efficiency (suggested in #44884 by TIMB) (ISHIGAKI)
|
||||||
|
|
|
@ -8,7 +8,7 @@ use DynaLoader ();
|
||||||
use vars qw($VERSION @ISA);
|
use vars qw($VERSION @ISA);
|
||||||
use vars qw{$err $errstr $drh $sqlite_version};
|
use vars qw{$err $errstr $drh $sqlite_version};
|
||||||
BEGIN {
|
BEGIN {
|
||||||
$VERSION = '1.22_04';
|
$VERSION = '1.22_05';
|
||||||
@ISA = ('DynaLoader');
|
@ISA = ('DynaLoader');
|
||||||
|
|
||||||
# Driver singleton
|
# Driver singleton
|
||||||
|
|
|
@ -9,7 +9,7 @@ use Test::More ();
|
||||||
|
|
||||||
use vars qw{$VERSION @ISA @EXPORT};
|
use vars qw{$VERSION @ISA @EXPORT};
|
||||||
BEGIN {
|
BEGIN {
|
||||||
$VERSION = '1.22_04';
|
$VERSION = '1.22_05';
|
||||||
@ISA = qw{ Exporter };
|
@ISA = qw{ Exporter };
|
||||||
@EXPORT = qw{ connect_ok };
|
@EXPORT = qw{ connect_ok };
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue