From d4f1f45a06e63ae58a03291fd3ae48e131ac6c83 Mon Sep 17 00:00:00 2001 From: Kenichi Ishigaki Date: Wed, 26 Mar 2014 03:47:27 +0900 Subject: [PATCH] releng 1.43_01 --- 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 dc6e831..9163848 100644 --- a/Changes +++ b/Changes @@ -1,5 +1,9 @@ Changes for Perl extension DBD-SQLite +1.43_01 2014-03-26 + - Added -std=gnu99 for solaris gcc users (reported by mattp++) + (ISHIGAKI) + 1.42 2014-03-20 - Switched to a production version. (ISHIGAKI) diff --git a/lib/DBD/SQLite.pm b/lib/DBD/SQLite.pm index df0e95d..d6e047a 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.42'; +our $VERSION = '1.43_01'; our @ISA = 'DynaLoader'; # sqlite_version cache (set in the XS bootstrap) diff --git a/t/lib/Test.pm b/t/lib/Test.pm index c3ff083..45591bb 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.42'; +our $VERSION = '1.43_01'; our @ISA = 'Exporter'; our @EXPORT = qw/connect_ok dies dbfile @CALL_FUNCS/; our @CALL_FUNCS;