diff --git a/Changes b/Changes index 68288f9..d968c24 100644 --- a/Changes +++ b/Changes @@ -1,6 +1,6 @@ Changes for Perl extension DBD-SQLite -1.67_05 to be released +1.67_05 2021-06-13 - Made DBD_SQLITE_STRING_MODE constants exportable 1.67_04 2021-05-31 diff --git a/lib/DBD/SQLite.pm b/lib/DBD/SQLite.pm index 5bf29f5..738c7d7 100644 --- a/lib/DBD/SQLite.pm +++ b/lib/DBD/SQLite.pm @@ -5,7 +5,7 @@ use strict; use DBI 1.57 (); use XSLoader (); -our $VERSION = '1.67_04'; +our $VERSION = '1.67_05'; # sqlite_version cache (set in the XS bootstrap) our ($sqlite_version, $sqlite_version_number); diff --git a/lib/DBD/SQLite/VirtualTable.pm b/lib/DBD/SQLite/VirtualTable.pm index 61960fc..a87654b 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.67_04'; +our $VERSION = '1.67_05'; our @ISA;