1
0
Fork 0
mirror of https://github.com/DBD-SQLite/DBD-SQLite synced 2025-06-07 22:28:47 -04:00

Preparing for release

This commit is contained in:
Adam Kennedy 2009-04-11 01:46:21 +00:00
parent 903bb83c7b
commit db43962dd2
3 changed files with 3 additions and 3 deletions

View file

@ -1,6 +1,6 @@
Changes for Perl extension DBD-SQLite. Changes for Perl extension DBD-SQLite.
1.22_04 not yet released 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)
- Dropping support for uncode before 5.8.5 to simplify support and - Dropping support for uncode before 5.8.5 to simplify support and

View file

@ -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_03'; $VERSION = '1.22_04';
@ISA = ('DynaLoader'); @ISA = ('DynaLoader');
# Driver singleton # Driver singleton

View file

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