From 422cea810d5b56f888361dd56fcb0beeafee5b4d Mon Sep 17 00:00:00 2001 From: Adam Kennedy Date: Wed, 8 Apr 2009 11:41:53 +0000 Subject: [PATCH] Preparing for the _02 release --- Changes | 10 ++++++++++ lib/DBD/SQLite.pm | 2 +- t/lib/Test.pm | 2 +- 3 files changed, 12 insertions(+), 2 deletions(-) diff --git a/Changes b/Changes index 6247b37..c14276f 100644 --- a/Changes +++ b/Changes @@ -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 diff --git a/lib/DBD/SQLite.pm b/lib/DBD/SQLite.pm index 9be24d7..fa3bf6d 100644 --- a/lib/DBD/SQLite.pm +++ b/lib/DBD/SQLite.pm @@ -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 diff --git a/t/lib/Test.pm b/t/lib/Test.pm index 76d9706..636a580 100644 --- a/t/lib/Test.pm +++ b/t/lib/Test.pm @@ -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 };