diff --git a/Changes b/Changes index 6b3c205..7a6339e 100644 --- a/Changes +++ b/Changes @@ -1,7 +1,12 @@ Changes for Perl extension DBD-SQLite -1.47_02 to be released - - Updated to SQLite 3.8.8.3 +1.47_02 2015-04-16 + - Updated to SQLite 3.8.9 + - Added DBD::SQLite::Constants, from which you can import any + "useful" constants into your applications. + - Removed previous Cygwin hack as SQLite 3.8.9 compiles well again + - Now create_function/aggregate accepts an extra bit + (SQLITE_DETERMINISTIC) for better performance. 1.47_01 2015-02-17 *** (EXPERIMENTAL) CHANGES THAT MAY POSSIBLY BREAK YOUR OLD APPLICATIONS *** diff --git a/lib/DBD/SQLite.pm b/lib/DBD/SQLite.pm index fc80a77..350c6bc 100644 --- a/lib/DBD/SQLite.pm +++ b/lib/DBD/SQLite.pm @@ -5,7 +5,7 @@ use strict; use DBI 1.57 (); use DynaLoader (); -our $VERSION = '1.47_01'; +our $VERSION = '1.47_02'; our @ISA = 'DynaLoader'; # sqlite_version cache (set in the XS bootstrap) diff --git a/lib/DBD/SQLite/VirtualTable.pm b/lib/DBD/SQLite/VirtualTable.pm index 68d3b3e..61f2264 100644 --- a/lib/DBD/SQLite/VirtualTable.pm +++ b/lib/DBD/SQLite/VirtualTable.pm @@ -5,7 +5,7 @@ use strict; use warnings; use Scalar::Util qw/weaken/; -our $VERSION = '1.47_01'; +our $VERSION = '1.47_02'; our @ISA;