]> git.vpit.fr Git - perl/modules/Linux-SysInfo.git/commitdiff
This is 0.12 v0.12
authorVincent Pit <vince@profvince.com>
Thu, 7 Jan 2010 17:48:39 +0000 (18:48 +0100)
committerVincent Pit <vince@profvince.com>
Thu, 7 Jan 2010 17:48:39 +0000 (18:48 +0100)
Changes
META.yml
README
lib/Linux/SysInfo.pm

diff --git a/Changes b/Changes
index ef88c3d9279d4be2edad6fe94967f1f79b3fe224..c159132c34532caffead63fcdcdbc91f7607f7ee 100644 (file)
--- a/Changes
+++ b/Changes
@@ -1,5 +1,9 @@
 Revision history for Linux-SysInfo
 
+0.12    2010-01-07 17:50 UTC
+        + Fix : Work around Kwalitee test misfailures.
+        + Tst : Test thread safety.
+
 0.11    2009-03-10 16:25 UTC
         + Chg : Perl 5.6 is required.
         + Doc : Some formatting cleanup.
index 181c9aa333d9be2e644cd5d52ee7fe6c0850ecf3..0ee0b2cd879d9c5b66e47071404fcf6b9a4038c5 100644 (file)
--- a/META.yml
+++ b/META.yml
@@ -1,6 +1,6 @@
 --- #YAML:1.0
 name:               Linux-SysInfo
-version:            0.11
+version:            0.12
 abstract:           Perl interface to the sysinfo(2) Linux system call.
 author:
     - Vincent Pit <perl@profvince.com>
@@ -9,9 +9,13 @@ distribution_type:  module
 configure_requires:
     ExtUtils::MakeMaker:  0
 build_requires:
+    base:                 0
+    Exporter:             0
     ExtUtils::MakeMaker:  0
     Test::More:           0
+    XSLoader:             0
 requires:
+    base:      0
     Exporter:  0
     perl:      5.006
     XSLoader:  0
@@ -19,12 +23,13 @@ resources:
     bugtracker:  http://rt.cpan.org/NoAuth/ReportBug.html?Queue=Linux-SysInfo
     homepage:    http://search.cpan.org/dist/Linux-SysInfo/
     license:     http://dev.perl.org/licenses/
-    repository:  http://git.profvince.com/perl/modules/Linux-SysInfo.git
+    repository:  http://git.profvince.com/?p=perl%2Fmodules%2FLinux-SysInfo.git
 no_index:
     directory:
         - t
         - inc
-generated_by:       ExtUtils::MakeMaker version 6.48
+generated_by:       ExtUtils::MakeMaker version 6.56
 meta-spec:
     url:      http://module-build.sourceforge.net/META-spec-v1.4.html
     version:  1.4
+dynamic_config:     1
diff --git a/README b/README
index 3cc89e326ab1e06728b191cc78684403947e4902..85327189c0a5d6e87b14e1b1d30269aa0574b3e4 100644 (file)
--- a/README
+++ b/README
@@ -2,7 +2,7 @@ NAME
     Linux::SysInfo - Perl interface to the sysinfo(2) Linux system call.
 
 VERSION
-    Version 0.11
+    Version 0.12
 
 SYNOPSIS
         use Linux::SysInfo qw/sysinfo/;
@@ -124,8 +124,11 @@ SUPPORT
 
         perldoc Linux::SysInfo
 
+    Tests code coverage report is available at
+    <http://www.profvince.com/perl/cover/Linux-SysInfo>.
+
 COPYRIGHT & LICENSE
-    Copyright 2007-2009 Vincent Pit, all rights reserved.
+    Copyright 2007,2008,2009,2010 Vincent Pit, all rights reserved.
 
     This program is free software; you can redistribute it and/or modify it
     under the same terms as Perl itself.
index 5c2257f7a9d80b9f041da564c344ecc11778375f..1b2f89ce93c3cb564c39bd74b9b508c75ceed840 100644 (file)
@@ -9,13 +9,13 @@ Linux::SysInfo - Perl interface to the sysinfo(2) Linux system call.
 
 =head1 VERSION
 
-Version 0.11
+Version 0.12
 
 =cut
 
 our $VERSION;
 BEGIN {
- $VERSION = '0.11';
+ $VERSION = '0.12';
 }
 
 =head1 SYNOPSIS