1
0
Fork 0
mirror of https://github.com/DBD-SQLite/DBD-SQLite synced 2025-06-07 14:19:10 -04:00

Preparing for the _02 release

This commit is contained in:
Adam Kennedy 2009-04-08 11:41:53 +00:00
parent 7ecd1839b9
commit 422cea810d
3 changed files with 12 additions and 2 deletions

10
Changes
View file

@ -1,5 +1,15 @@
Changes for Perl extension DBD-SQLite.
1.22_02 Wed 9 Apr 2009
- Added missing documentation bits for 'create_collation'
and 'progress_handler' (DAMI)
- Resolved RT#25924 (Arguments to user-defined functions do not
respect unicode setting) (DAMI)
- Added comments on the return values on error, and fixed another
wrong return value in execute (ISHIGAKI)
- Added SQL_NULLABLE_UNKNOWN; still wonders if the error above
should be ignored or not (ISHIGAKI)
1.22_01 Wed 9 Apr 2009
- Resolved #25371: Calls sv_utf8_upgrade on strings going into
the database to make sure latin-1 strings are not saved as

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

View file

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