diff --git a/Changes b/Changes index 435a6cf..f05cc7d 100644 --- a/Changes +++ b/Changes @@ -1,5 +1,13 @@ Changes for Perl extension DBD-SQLite +1.36_02 please release this + - Downgraded SQLite to 3.7.9, as 3.7.10 turned out to be + broken on the latest MacOS X (due to a missing symbol), + and broke other modules that typically use temporary tables + under a few environments too. As of this writing, would-be + 3.7.11 seems fine, but it would take another month to be + released. (ISHIGAKI) + 1.36_01 Thu 19 Jan 2012 *** CHANGES THAT MAY POSSIBLY BREAK YOUR OLD APPLICATIONS *** - Updated to SQLite 3.7.10 (ISHIGAKI) diff --git a/lib/DBD/SQLite.pm b/lib/DBD/SQLite.pm index 047e7d0..d21216a 100644 --- a/lib/DBD/SQLite.pm +++ b/lib/DBD/SQLite.pm @@ -10,7 +10,7 @@ use vars qw{$err $errstr $drh $sqlite_version $sqlite_version_number}; use vars qw{%COLLATION}; BEGIN { - $VERSION = '1.36_01'; + $VERSION = '1.36_02'; @ISA = 'DynaLoader'; # Initialize errors diff --git a/t/lib/Test.pm b/t/lib/Test.pm index aa25750..051d42e 100644 --- a/t/lib/Test.pm +++ b/t/lib/Test.pm @@ -11,7 +11,7 @@ use vars qw{$VERSION @ISA @EXPORT @CALL_FUNCS}; my $parent; my %dbfiles; BEGIN { - $VERSION = '1.36_01'; + $VERSION = '1.36_02'; @ISA = 'Exporter'; @EXPORT = qw/connect_ok dies dbfile @CALL_FUNCS/;