From 3ef48ff6cec1f1eb90fab3aa26acab2b957d5bd2 Mon Sep 17 00:00:00 2001 From: Kenichi Ishigaki Date: Wed, 22 Oct 2014 23:17:35 +0900 Subject: [PATCH] releng 1.44 --- Changes | 3 +++ lib/DBD/SQLite.pm | 2 +- lib/DBD/SQLite/VirtualTable.pm | 2 +- t/lib/Test.pm | 2 +- 4 files changed, 6 insertions(+), 3 deletions(-) diff --git a/Changes b/Changes index 96039c2..1d3edbf 100644 --- a/Changes +++ b/Changes @@ -1,5 +1,8 @@ Changes for Perl extension DBD-SQLite +1.44 2014-10-22 + - Switched to a production version. (ISHIGAKI) + 1.43_09 2014-10-20 - Resolved #99583: Legacy DOS 8.3 filename support incompatible with SQLITE WAL journal mode (spotted by Pat Horton) (ISHIGAKI) diff --git a/lib/DBD/SQLite.pm b/lib/DBD/SQLite.pm index 2e1d22a..df67577 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.43_09'; +our $VERSION = '1.44'; 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 fc247d1..03078a6 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 = '0.01'; +our $VERSION = '1.44'; our @ISA; diff --git a/t/lib/Test.pm b/t/lib/Test.pm index 8d01208..66bc1b4 100644 --- a/t/lib/Test.pm +++ b/t/lib/Test.pm @@ -7,7 +7,7 @@ use Exporter (); use File::Spec (); use Test::More (); -our $VERSION = '1.43_09'; +our $VERSION = '1.44'; our @ISA = 'Exporter'; our @EXPORT = qw/connect_ok dies dbfile @CALL_FUNCS/; our @CALL_FUNCS;