From: Vincent Pit Date: Thu, 7 Jan 2010 17:48:39 +0000 (+0100) Subject: This is 0.12 X-Git-Tag: v0.12^0 X-Git-Url: http://git.vpit.fr/?p=perl%2Fmodules%2FLinux-SysInfo.git;a=commitdiff_plain;h=42a93674d5f3572e7d87e2cfd5fe809a9e1f6f76 This is 0.12 --- diff --git a/Changes b/Changes index ef88c3d..c159132 100644 --- 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. diff --git a/META.yml b/META.yml index 181c9aa..0ee0b2c 100644 --- 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 @@ -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 3cc89e3..8532718 100644 --- 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 + . + 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. diff --git a/lib/Linux/SysInfo.pm b/lib/Linux/SysInfo.pm index 5c2257f..1b2f89c 100644 --- a/lib/Linux/SysInfo.pm +++ b/lib/Linux/SysInfo.pm @@ -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