diff --git a/Changes b/Changes index 26ff891..e7132e1 100644 --- a/Changes +++ b/Changes @@ -1,6 +1,6 @@ Changes for Perl extension DBD-SQLite -1.26_06 (not released yet) +1.26_06 Wed 28 Ocr 2009 *** CHANGES THAT MAY POSSIBLY BREAK YOUR OLD APPLICATIONS *** - Removed undocumented (and most probably unused) reset method from a statement handle (which was only accessible via func().) diff --git a/lib/DBD/SQLite.pm b/lib/DBD/SQLite.pm index b21a6d0..2f419f8 100644 --- a/lib/DBD/SQLite.pm +++ b/lib/DBD/SQLite.pm @@ -10,7 +10,7 @@ use vars qw{$err $errstr $drh $sqlite_version}; use vars qw{%COLLATION}; BEGIN { - $VERSION = '1.26_05'; + $VERSION = '1.26_06'; @ISA = 'DynaLoader'; # Initialize errors diff --git a/t/lib/Test.pm b/t/lib/Test.pm index a23492f..d1161bf 100644 --- a/t/lib/Test.pm +++ b/t/lib/Test.pm @@ -9,7 +9,7 @@ use Test::More (); use vars qw{$VERSION @ISA @EXPORT @CALL_FUNCS}; BEGIN { - $VERSION = '1.26_05'; + $VERSION = '1.26_06'; @ISA = 'Exporter'; @EXPORT = qw/connect_ok dies @CALL_FUNCS/;