From: Vincent Pit Date: Sat, 4 Nov 2017 17:30:07 +0000 (+0100) Subject: This is 0.15 X-Git-Tag: v0.15^0 X-Git-Url: http://git.vpit.fr/?p=perl%2Fmodules%2FLinux-SysInfo.git;a=commitdiff_plain;h=4371dad81c34e3d93af8a17a3a6a715045e0f071 This is 0.15 --- diff --git a/Changes b/Changes index baf551e..e652c45 100644 --- a/Changes +++ b/Changes @@ -1,5 +1,8 @@ Revision history for Linux-SysInfo +0.15 2017-11-04 17:30 UTC + + Fix : Test failures on perl 5.27.5 and above. + 0.14 2013-09-01 15:20 UTC This is a maintenance release. The code contains no functional change. Satisfied users of version 0.13 can skip this update. diff --git a/META.json b/META.json index 2bef45b..be2f825 100644 --- a/META.json +++ b/META.json @@ -4,7 +4,7 @@ "Vincent Pit " ], "dynamic_config" : 1, - "generated_by" : "ExtUtils::MakeMaker version 6.66, CPAN::Meta::Converter version 2.120921", + "generated_by" : "ExtUtils::MakeMaker version 6.98, CPAN::Meta::Converter version 2.140640", "license" : [ "perl_5" ], @@ -56,5 +56,5 @@ "url" : "http://git.profvince.com/?p=perl%2Fmodules%2FLinux-SysInfo.git" } }, - "version" : "0.14" + "version" : "0.15" } diff --git a/META.yml b/META.yml index 3ba15fb..5f6ac81 100644 --- a/META.yml +++ b/META.yml @@ -3,32 +3,32 @@ abstract: 'Perl interface to the sysinfo(2) Linux system call.' author: - 'Vincent Pit ' build_requires: - Exporter: 0 - ExtUtils::MakeMaker: 0 - Test::More: 0 - XSLoader: 0 - base: 0 + Exporter: '0' + ExtUtils::MakeMaker: '0' + Test::More: '0' + XSLoader: '0' + base: '0' configure_requires: - ExtUtils::MakeMaker: 0 + ExtUtils::MakeMaker: '0' dynamic_config: 1 -generated_by: 'ExtUtils::MakeMaker version 6.66, CPAN::Meta::Converter version 2.120921' +generated_by: 'ExtUtils::MakeMaker version 6.98, CPAN::Meta::Converter version 2.140640' license: perl meta-spec: url: http://module-build.sourceforge.net/META-spec-v1.4.html - version: 1.4 + version: '1.4' name: Linux-SysInfo no_index: directory: - t - inc requires: - Exporter: 0 - XSLoader: 0 - base: 0 - perl: 5.006 + Exporter: '0' + XSLoader: '0' + base: '0' + perl: '5.006' resources: bugtracker: http://rt.cpan.org/Dist/Display.html?Name=Linux-SysInfo homepage: http://search.cpan.org/dist/Linux-SysInfo/ license: http://dev.perl.org/licenses/ repository: http://git.profvince.com/?p=perl%2Fmodules%2FLinux-SysInfo.git -version: 0.14 +version: '0.15' diff --git a/README b/README index a01f1c8..7793777 100644 --- a/README +++ b/README @@ -2,7 +2,7 @@ NAME Linux::SysInfo - Perl interface to the sysinfo(2) Linux system call. VERSION - Version 0.14 + Version 0.15 SYNOPSIS use Linux::SysInfo qw; @@ -127,11 +127,9 @@ SUPPORT perldoc Linux::SysInfo - Tests code coverage report is available at - . - COPYRIGHT & LICENSE - Copyright 2007,2008,2009,2010,2013 Vincent Pit, all rights reserved. + Copyright 2007,2008,2009,2010,2013,2017 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 7b4fddf..c29a767 100644 --- a/lib/Linux/SysInfo.pm +++ b/lib/Linux/SysInfo.pm @@ -11,13 +11,13 @@ Linux::SysInfo - Perl interface to the sysinfo(2) Linux system call. =head1 VERSION -Version 0.14 +Version 0.15 =cut our $VERSION; BEGIN { - $VERSION = '0.14'; + $VERSION = '0.15'; } =head1 SYNOPSIS