From db43962dd2d9565f20c6a7a3c91885877e1a9c8a Mon Sep 17 00:00:00 2001 From: Adam Kennedy Date: Sat, 11 Apr 2009 01:46:21 +0000 Subject: [PATCH] Preparing for release --- Changes | 2 +- lib/DBD/SQLite.pm | 2 +- t/lib/Test.pm | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Changes b/Changes index 9ac2567..47dacd5 100644 --- a/Changes +++ b/Changes @@ -1,6 +1,6 @@ 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) - Inserted pTHX_/aTHX_ for better efficiency (suggested in #44884 by TIMB) (ISHIGAKI) - Dropping support for uncode before 5.8.5 to simplify support and diff --git a/lib/DBD/SQLite.pm b/lib/DBD/SQLite.pm index 09c9f03..dd44047 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_03'; + $VERSION = '1.22_04'; @ISA = ('DynaLoader'); # Driver singleton diff --git a/t/lib/Test.pm b/t/lib/Test.pm index 96f5e53..ddad2ba 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_03'; + $VERSION = '1.22_04'; @ISA = qw{ Exporter }; @EXPORT = qw{ connect_ok };