From 5088ece17bdb0a02e4ea29df10f9fc391af3a4c4 Mon Sep 17 00:00:00 2001 From: Adam Kennedy Date: Thu, 23 Apr 2009 10:09:02 +0000 Subject: [PATCH] Preparing to release the next prod version --- Changes | 6 +++++- Makefile.PL | 14 ++++++-------- lib/DBD/SQLite.pm | 2 +- t/lib/Test.pm | 2 +- 4 files changed, 13 insertions(+), 11 deletions(-) diff --git a/Changes b/Changes index fd8059a..d5baf1d 100644 --- a/Changes +++ b/Changes @@ -1,4 +1,8 @@ -Changes for Perl extension DBD-SQLite. +Changes for Perl extension DBD-SQLite + +1.25 Thu 23 Apr 2009 + - Amalgamation conversion turned out to be quicker than expected. + - Changing to a production release. (ADAMK) 1.24_02 Wed 22 Apr 2009 - Merging various externally-contributed annotations from diff --git a/Makefile.PL b/Makefile.PL index e16ab9e..8a5be1c 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -284,21 +284,19 @@ sub libscan { sub test_via_harness { my ($self, $perl, $tests) = @_; - if ($^O eq 'hpux' and $Config{osvers} <= 10.20) { - return qq{\tPERL_DL_NONLAZY=0 $perl "-MExtUtils::Command::MM" }. - qq{"-e" "test_harness(\$(TEST_VERBOSE), '\$(INST_LIB)', '\$(INST_ARCHLIB)')" $tests\n}; - } - else { + if ( $^O eq 'hpux' and $Config{osvers} <= 10.20 ) { + return qq{\tPERL_DL_NONLAZY=0 $perl "-MExtUtils::Command::MM" } + . qq{"-e" "test_harness(\$(TEST_VERBOSE), '\$(INST_LIB)', '\$(INST_ARCHLIB)')" $tests\n}; + } else { $self->SUPER::test_via_harness($perl, $tests); } } sub test_via_script { my ($self, $perl, $script) = @_; - if ($^O eq 'hpux' and $Config{osvers} <= 10.20) { + if ( $^O eq 'hpux' and $Config{osvers} <= 10.20 ) { return qq{\tPERL_DL_NONLAZY=0 $perl "-I\$(INST_LIB)" "-I\$(INST_ARCHLIB)" $script\n}; - } - else { + } else { $self->SUPER::test_via_script($perl, $script); } } diff --git a/lib/DBD/SQLite.pm b/lib/DBD/SQLite.pm index ffdb168..97e1d15 100644 --- a/lib/DBD/SQLite.pm +++ b/lib/DBD/SQLite.pm @@ -8,7 +8,7 @@ use DynaLoader (); use vars qw($VERSION @ISA); use vars qw{$err $errstr $drh $sqlite_version}; BEGIN { - $VERSION = '1.24_02'; + $VERSION = '1.25'; @ISA = ('DynaLoader'); # Initialize errors diff --git a/t/lib/Test.pm b/t/lib/Test.pm index 7dc86b0..1fcec52 100644 --- a/t/lib/Test.pm +++ b/t/lib/Test.pm @@ -9,7 +9,7 @@ use Test::More (); use vars qw{$VERSION @ISA @EXPORT}; BEGIN { - $VERSION = '1.24_02'; + $VERSION = '1.25'; @ISA = qw{ Exporter }; @EXPORT = qw{ connect_ok };