From 6bac0136b3e404c6cc685c7d170326aa6b3d8565 Mon Sep 17 00:00:00 2001 From: Kenichi Ishigaki Date: Fri, 30 Jul 2021 06:07:43 +0900 Subject: [PATCH] Release 1.69_01 --- Changes | 5 +++++ lib/DBD/SQLite.pm | 2 +- lib/DBD/SQLite/VirtualTable.pm | 2 +- 3 files changed, 7 insertions(+), 2 deletions(-) diff --git a/Changes b/Changes index 41efea0..9922d44 100644 --- a/Changes +++ b/Changes @@ -1,5 +1,10 @@ Changes for Perl extension DBD-SQLite +1.69_01 2021-07-30 + - Typo (GH#85, grr++) + - Silenced deprecation warning of sqlite_unicode not to break + tests of existing applications + 1.68 2021-07-22 - Switched to a production version diff --git a/lib/DBD/SQLite.pm b/lib/DBD/SQLite.pm index 862ae56..96f878d 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.68'; +our $VERSION = '1.69_01'; # 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 c1ae853..a3075cb 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.68'; +our $VERSION = '1.69_01'; our @ISA;