From: Vincent Pit Date: Fri, 5 Mar 2010 22:44:20 +0000 (+0100) Subject: This is 0.13 X-Git-Tag: v0.13^0 X-Git-Url: http://git.vpit.fr/?p=perl%2Fmodules%2FLinux-SysInfo.git;a=commitdiff_plain;h=35962c406c3363c45f68c88516a2946c86e902db This is 0.13 --- diff --git a/Changes b/Changes index c159132..32c6f35 100644 --- a/Changes +++ b/Changes @@ -1,5 +1,10 @@ Revision history for Linux-SysInfo +0.13 2010-03-05 22:50 UTC + + Fix : t/30-threads.t will not be correctly skipped for perls with + ithreads but without threads.pm. Thanks David Cantrell for + providing access to a machine with such a perl. + 0.12 2010-01-07 17:50 UTC + Fix : Work around Kwalitee test misfailures. + Tst : Test thread safety. diff --git a/META.yml b/META.yml index 0ee0b2c..511f722 100644 --- a/META.yml +++ b/META.yml @@ -1,6 +1,6 @@ --- #YAML:1.0 name: Linux-SysInfo -version: 0.12 +version: 0.13 abstract: Perl interface to the sysinfo(2) Linux system call. author: - Vincent Pit diff --git a/README b/README index 8532718..e158e83 100644 --- a/README +++ b/README @@ -2,7 +2,7 @@ NAME Linux::SysInfo - Perl interface to the sysinfo(2) Linux system call. VERSION - Version 0.12 + Version 0.13 SYNOPSIS use Linux::SysInfo qw/sysinfo/; diff --git a/lib/Linux/SysInfo.pm b/lib/Linux/SysInfo.pm index 1b2f89c..767238c 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.12 +Version 0.13 =cut our $VERSION; BEGIN { - $VERSION = '0.12'; + $VERSION = '0.13'; } =head1 SYNOPSIS