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

Prepare dev release

This commit is contained in:
Adam Kennedy 2009-04-08 01:50:10 +00:00
parent 4ac21a0057
commit be05f9d9dc
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 1.22_01 Wed 9 Apr 2009
- Resolved #25371: Calls sv_utf8_upgrade on strings going into - Resolved #25371: Calls sv_utf8_upgrade on strings going into
the database to make sure latin-1 strings are not saved as the database to make sure latin-1 strings are not saved as
Malformed UTF-8 character in the SQLite TEXT column (MIYAGAWA) Malformed UTF-8 character in the SQLite TEXT column (MIYAGAWA)

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.21'; $VERSION = '1.22_01';
@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.21'; $VERSION = '1.22_01';
@ISA = qw{ Exporter }; @ISA = qw{ Exporter };
@EXPORT = qw{ connect_ok }; @EXPORT = qw{ connect_ok };