From 661d7cabac97e3aea12732d633a32490b120252e Mon Sep 17 00:00:00 2001 From: Kenichi Ishigaki Date: Sun, 28 Jul 2013 14:28:58 +0900 Subject: [PATCH] releng 1.40 --- Changes | 4 ++++ lib/DBD/SQLite.pm | 2 +- t/lib/Test.pm | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/Changes b/Changes index b2952b6..3fb862b 100644 --- a/Changes +++ b/Changes @@ -1,5 +1,9 @@ Changes for Perl extension DBD-SQLite +1.40 Sun 28 Jul 2013 + - NetBSD also doesn't like the _XOPEN_SOURCE hack (ISHIGAKI) + - Resolved #86080: PATCH: statistics_info support (DDICK) + 1.39 Fri 31 May 2013 - Production release, no changes from 1.38_05 diff --git a/lib/DBD/SQLite.pm b/lib/DBD/SQLite.pm index 4e1c51f..7429534 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.39'; +our $VERSION = '1.40'; our @ISA = 'DynaLoader'; # sqlite_version cache (set in the XS bootstrap) diff --git a/t/lib/Test.pm b/t/lib/Test.pm index 5c56a36..1ec2001 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.39'; +our $VERSION = '1.40'; our @ISA = 'Exporter'; our @EXPORT = qw/connect_ok dies dbfile @CALL_FUNCS/; our @CALL_FUNCS;