diff --git a/Changes b/Changes index 7a60466..bc2734b 100644 --- a/Changes +++ b/Changes @@ -1,5 +1,11 @@ Changes for Perl extension DBD-SQLite +1.55_07 2018-01-27 + - This is a developer release to help testing DBIx::Class + - Upgraded SQLite to 3.22.0 + - Disabled two STAT compile time options (tentatively), + which fixes RT-124227 anyway + 1.55_06 2018-01-27 - This is a developer release to help testing DBIx::Class - Downgraded SQLite to 3.19.3 because of a SQLite regression diff --git a/lib/DBD/SQLite.pm b/lib/DBD/SQLite.pm index 8cd2e08..f71662a 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.55_06'; +our $VERSION = '1.55_07'; 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 2662ebd..9abda6d 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.55_06'; +our $VERSION = '1.55_07'; our @ISA;