diff --git a/Changes b/Changes index 1155241..b4247c4 100644 --- a/Changes +++ b/Changes @@ -1,5 +1,10 @@ Changes for Perl extension DBD-SQLite +1.61_04 2018-12-22 + - Added sqlite_db_config method and new constants for it + - Added sqlite_defensive option to disallow dangerous SQLite features + - Exposed some of the hidden extended result codes + 1.61_03 2018-12-19 - Upgraded SQLite to 3.26.0, which reportedly has a security fix diff --git a/lib/DBD/SQLite.pm b/lib/DBD/SQLite.pm index aae801a..74bade6 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.61_03'; +our $VERSION = '1.61_04'; 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 106089c..de5fed3 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.61_03'; +our $VERSION = '1.61_04'; our @ISA;