]> git.vpit.fr Git - perl/modules/Test-Valgrind.git/commitdiff
This is 0.06 v0.06
authorVincent Pit <vince@profvince.com>
Tue, 9 Sep 2008 22:07:43 +0000 (00:07 +0200)
committerVincent Pit <vince@profvince.com>
Tue, 9 Sep 2008 22:13:08 +0000 (00:13 +0200)
Changes
META.yml
README
lib/Test/Valgrind.pm
lib/Test/Valgrind/Suppressions.pm
lib/Test/Valgrind/Suppressions.tpl
t/30-bad.t

diff --git a/Changes b/Changes
index 25ef3c40a83d084079bf306aa3bddf8cea4603d9..03e2671cc352282b0c4f033fc318b0216ea7349b 100644 (file)
--- 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.
 
index a7811c34dd68dc987bbfb050db6e19a9b672d783..ab3e5c4e1c1abeb7b7761807cbb7d467bf616a03 100644 (file)
--- 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 6a1b258ff8a11f31ad06e755b48be94453a71ad4..2a1061889b38a7efd282c2ac69b422e4a6c93d87 100644 (file)
--- 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;
index e8925d86cdd19523f96a363bc09a446379a521f9..34ff5d903cc5c75ee06c7b2152870749ec789047 100644 (file)
@@ -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
 
index 3c39e59ac8266db3fe76fbf5805b61f9921a316e..6c83c9132125624a76d91944ec0914939cd6746f 100644 (file)
@@ -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
 
index 3c39e59ac8266db3fe76fbf5805b61f9921a316e..6c83c9132125624a76d91944ec0914939cd6746f 100644 (file)
@@ -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
 
index 2237a7e47f425a986e48c177a8da26cb6c6b72cc..e20b42313f10cba955f687daadb0d1784dbd3759 100644 (file)
@@ -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 ($@)";