diff --git a/Changes b/Changes index 1adc92d..d24c342 100644 --- a/Changes +++ b/Changes @@ -1,7 +1,7 @@ Changes for Perl extension DBD-SQLite 1.55_04 to be released - - Updated SQLite to 3.20.1 + - Updated SQLite to 3.21.0 - Resolved #122581: statistics_info() doesn't work correctly (John Deighan) - Fixed typo (GH#26, ReneNyffenegger) @@ -9,6 +9,8 @@ Changes for Perl extension DBD-SQLite - Fixed no dot in @INC issue (GH#24, ribasushi) - Fixed zero-length BLOB value is retrieved as undef (GH#23, SATO Kentaro) + - Fixed VirtualTable::PerlData to use new ops added in SQLite 3.21.0 + (GH#28, fschlich) 1.55_03 2017-02-14 - Updated SQLite to 3.17.0 diff --git a/lib/DBD/SQLite.pm b/lib/DBD/SQLite.pm index 41ee4e9..6804b60 100644 --- a/lib/DBD/SQLite.pm +++ b/lib/DBD/SQLite.pm @@ -977,7 +977,7 @@ are limited by the typeless nature of the SQLite database. =head1 SQLITE VERSION DBD::SQLite is usually compiled with a bundled SQLite library -(SQLite version S<3.20.1> as of this release) for consistency. +(SQLite version S<3.21.0> as of this release) for consistency. However, a different version of SQLite may sometimes be used for some reasons like security, or some new experimental features.