]> git.vpit.fr Git - perl/modules/Linux-SysInfo.git/commitdiff
This is 0.15 master v0.15
authorVincent Pit <perl@profvince.com>
Sat, 4 Nov 2017 17:30:07 +0000 (18:30 +0100)
committerVincent Pit <perl@profvince.com>
Sat, 4 Nov 2017 17:30:07 +0000 (18:30 +0100)
Changes
META.json
META.yml
README
lib/Linux/SysInfo.pm

diff --git a/Changes b/Changes
index baf551e5f8c8122c28973b2b43df67f0f0211a41..e652c459c3c32ad138d445ccdf5f72c081d0311b 100644 (file)
--- 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.
index 2bef45b2505b5c0afd4f15cd5fa4f391319323bd..be2f8258ba382c57f870a0deea245ce4956512fd 100644 (file)
--- a/META.json
+++ b/META.json
@@ -4,7 +4,7 @@
       "Vincent Pit <perl@profvince.com>"
    ],
    "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"
 }
index 3ba15fbf284dba8ffc05f4932fb422b9b86ca88b..5f6ac8141467b73087cf278047f3927daab59cd9 100644 (file)
--- a/META.yml
+++ b/META.yml
@@ -3,32 +3,32 @@ abstract: 'Perl interface to the sysinfo(2) Linux system call.'
 author:
   - 'Vincent Pit <perl@profvince.com>'
 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 a01f1c8365a771c7770d16ee92109fc4680d8d82..7793777536b3bf750699d8d7fbbd9a71b0acef52 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.14
+    Version 0.15
 
 SYNOPSIS
         use Linux::SysInfo qw<sysinfo>;
@@ -127,11 +127,9 @@ SUPPORT
 
         perldoc Linux::SysInfo
 
-    Tests code coverage report is available at
-    <http://www.profvince.com/perl/cover/Linux-SysInfo>.
-
 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.
index 7b4fddfcfe0fffb871015bd9d58e5aee0822045e..c29a767a1005141d2aa06eb8e35a867890bd2b87 100644 (file)
@@ -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