diff --git a/Changes b/Changes index ec04489..dbf2542 100644 --- a/Changes +++ b/Changes @@ -1,5 +1,8 @@ Changes for Perl extension DBD-SQLite. +1.23 Sun 19 Apr 2009 + - No changes from 1.22_08, just switched to production release (ADAMK) + 1.22_08 Fri 17 Apr 2009 - Completed the migration of all tests and deleted lib.pl (ADAMK) - Prevented a double "commit is innefective" warning (ADAMK) diff --git a/lib/DBD/SQLite.pm b/lib/DBD/SQLite.pm index 7851140..2c3c2a5 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_08'; + $VERSION = '1.23'; @ISA = ('DynaLoader'); # Initialize errors diff --git a/t/lib/Test.pm b/t/lib/Test.pm index 61026cf..8e42c8f 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_08'; + $VERSION = '1.23'; @ISA = qw{ Exporter }; @EXPORT = qw{ connect_ok };