From: Vincent Pit Date: Tue, 9 Sep 2008 22:07:43 +0000 (+0200) Subject: This is 0.06 X-Git-Tag: v0.06^0 X-Git-Url: http://git.vpit.fr/?p=perl%2Fmodules%2FTest-Valgrind.git;a=commitdiff_plain;h=1666a129cb733f048b93b81ba5ad89b8abcffead This is 0.06 --- diff --git a/Changes b/Changes index 25ef3c4..03e2671 100644 --- a/Changes +++ b/Changes @@ -1,5 +1,14 @@ Revision history for Test-Valgrind +0.06 2008-09-09 22:10 UTC + + Fix : Suppressions were installed in the wrong path. Thanks Marvin + Humphrey for reporting this. + + Fix : Really load XSLoader when generating suppressions. Thanks Marvin + Humphrey again for bringing this to my attention. + + Fix : The logic for finding the file to run through valgrind was + flawed, which lead to generate suppressions against + Test/Valgrind.pm only. + 0.051 2008-09-02 17:20 UTC + Fix : Forgot to upgrade version of the suppression placeholder module. diff --git a/META.yml b/META.yml index a7811c3..ab3e5c4 100644 --- a/META.yml +++ b/META.yml @@ -1,6 +1,6 @@ --- #YAML:1.0 name: Test-Valgrind -version: 0.051 +version: 0.06 abstract: Test Perl code through valgrind. license: perl author: diff --git a/README b/README index 6a1b258..2a10618 100644 --- a/README +++ b/README @@ -2,7 +2,7 @@ NAME Test::Valgrind - Test Perl code through valgrind. VERSION - Version 0.051 + Version 0.06 SYNOPSIS use Test::More; diff --git a/lib/Test/Valgrind.pm b/lib/Test/Valgrind.pm index e8925d8..34ff5d9 100644 --- a/lib/Test/Valgrind.pm +++ b/lib/Test/Valgrind.pm @@ -17,11 +17,11 @@ Test::Valgrind - Test Perl code through valgrind. =head1 VERSION -Version 0.051 +Version 0.06 =cut -our $VERSION = '0.051'; +our $VERSION = '0.06'; =head1 SYNOPSIS diff --git a/lib/Test/Valgrind/Suppressions.pm b/lib/Test/Valgrind/Suppressions.pm index 3c39e59..6c83c91 100644 --- a/lib/Test/Valgrind/Suppressions.pm +++ b/lib/Test/Valgrind/Suppressions.pm @@ -9,11 +9,11 @@ Test::Valgrind::Suppressions - Placeholder for architecture-dependant perl suppr =head1 VERSION -Version 0.051 +Version 0.06 =cut -our $VERSION = '0.051'; +our $VERSION = '0.06'; =head1 DESCRIPTION diff --git a/lib/Test/Valgrind/Suppressions.tpl b/lib/Test/Valgrind/Suppressions.tpl index 3c39e59..6c83c91 100644 --- a/lib/Test/Valgrind/Suppressions.tpl +++ b/lib/Test/Valgrind/Suppressions.tpl @@ -9,11 +9,11 @@ Test::Valgrind::Suppressions - Placeholder for architecture-dependant perl suppr =head1 VERSION -Version 0.051 +Version 0.06 =cut -our $VERSION = '0.051'; +our $VERSION = '0.06'; =head1 DESCRIPTION diff --git a/t/30-bad.t b/t/30-bad.t index 2237a7e..e20b423 100644 --- a/t/30-bad.t +++ b/t/30-bad.t @@ -31,7 +31,7 @@ sub tester { eval " require XSLoader; - XSLoader::load('Test::Valgrind', 0.051); + XSLoader::load('Test::Valgrind', 0.06); "; if ($@) { plan skip_all => "XS test code not available ($@)";