diff --git a/Changes b/Changes index 201cdd9..fb06c06 100644 --- a/Changes +++ b/Changes @@ -1,5 +1,11 @@ Changes for Perl extension DBD-SQLite +1.63_05 2019-07-12 + - Upgraded SQLite to 3.29.0 + - Added sqlite_get_autocommit private method (GH#52) + - Addded new db_config constants, notably to prohibit + double-quoted string literals + 1.63_04 2019-05-25 - Upgraded SQLite to 3.28.0 - Modified doc for sqlite_db_filename which actually returns undef diff --git a/lib/DBD/SQLite.pm b/lib/DBD/SQLite.pm index 6742b05..622fc72 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.63_04'; +our $VERSION = '1.63_05'; 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 2747df7..8f82ee2 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.63_04'; +our $VERSION = '1.63_05'; our @ISA;