]> Dogcows Code - chaz/p5-Linux-Proc-Maps/commitdiff
Release Linux-Proc-Maps 0.002
authorCharles McGarvey <chazmcgarvey@brokenzipper.com>
Mon, 28 Nov 2016 05:03:41 +0000 (22:03 -0700)
committerCharles McGarvey <chazmcgarvey@brokenzipper.com>
Mon, 28 Nov 2016 05:03:41 +0000 (22:03 -0700)
  * Require at least perl 5.8.0; it may work on earlier perls, but I don't
    want to support it.
  * Document the possibility of integer overloading

.travis.yml
Changes
README.md

index 86a7da9c72d1a03c272b4c04ca3b8ab1d59ff5ff..dd187babee389ff0c044e693e652386a2587613f 100644 (file)
@@ -1,7 +1,8 @@
 sudo: false
 language: perl
 perl:
-   - 'blead'
+   - '5.24'
+   - '5.22'
    - '5.20'
    - '5.18'
    - '5.16'
@@ -11,7 +12,6 @@ perl:
    - '5.8'
 matrix:
    allow_failures:
-      - perl: 'blead'
       - perl: '5.8'
    fast_finish: true
 before_install:
diff --git a/Changes b/Changes
index e4febab26434e5b30bc1d3526191a2b800bd07f6..25e460fdcfb928674594e4de2792194c2145fee6 100644 (file)
--- a/Changes
+++ b/Changes
@@ -2,6 +2,12 @@ Revision history for Linux-Proc-Maps.
 
 {{$NEXT}}
 
+0.002     2016-11-27 22:03:31-07:00 MST7MDT
+
+  * Require at least perl 5.8.0; it may work on earlier perls, but I don't
+    want to support it.
+  * Document the possibility of integer overloading
+
 0.001     2016-11-25 22:53:07-07:00 MST7MDT
 
   * Initial release
index 3bc06f0fbf976f2b2b3b6f52a670b28c2392a089..5873c9bf6364dde831e03c931a28435391fd8231 100644 (file)
--- a/README.md
+++ b/README.md
@@ -4,7 +4,7 @@ Linux::Proc::Maps - Read and write /proc/\[pid\]/maps files
 
 # VERSION
 
-version 0.001
+version 0.002
 
 # SYNOPSIS
 
@@ -23,7 +23,7 @@ version 0.001
 
 This module reads and writes `/proc/[pid]/maps` files that contain listed mapped memory regions.
 
-# METHODS
+# FUNCTIONS
 
 ## read\_maps
 
@@ -89,6 +89,12 @@ This is the opposite of ["parse\_maps\_single\_line"](#parse_maps_single_line).
 
 [proc(5)](http://man.he.net/man5/proc) describes the file format.
 
+# CAVEATS
+
+Integer overloading may occur if you try to parse memory regions from address spaces larger than
+your current architecture (or perl) supports. This is currently not fatal, though you will get
+warnings from perl that you probably shouldn't ignore.
+
 # BUGS
 
 Please report any bugs or feature requests on the bugtracker website
This page took 0.023446 seconds and 4 git commands to generate.