]> git.vpit.fr Git - perl/modules/Mac-NSGetExecutablePath.git/commitdiff
This is 0.02 v0.02
authorVincent Pit <vince@profvince.com>
Fri, 2 Nov 2012 00:54:30 +0000 (22:54 -0200)
committerVincent Pit <vince@profvince.com>
Fri, 2 Nov 2012 00:54:30 +0000 (22:54 -0200)
Changes
META.json
META.yml
README
lib/Mac/NSGetExecutablePath.pm

diff --git a/Changes b/Changes
index a72ba1068eee7de07b9b77402fcc8fb49717b180..0bd686c21ae0eef89adbf2bf553dfc463664393b 100644 (file)
--- a/Changes
+++ b/Changes
@@ -1,5 +1,11 @@
 Revision history for Mac-NSGetExecutablePath
 
+0.02    2012-11-02 00:55 UTC
+        + Fix : NSGetExecutablePath() no longer leaks its return value.
+        + Tst : t/93-pod-spelling.t does not crash anymore on perl 5.12 and
+                below.
+                Thanks Slaven Rezic for debugging this.
+
 0.01    2012-10-29 19:55 UTC
         First version, released on an unsuspecting world.
 
index 82228859b006326ffa02078e661555b8233da32e..79d448a7a53549256e6a172f2b1f70ee5eed33d6 100644 (file)
--- a/META.json
+++ b/META.json
@@ -56,5 +56,5 @@
          "url" : "http://git.profvince.com/?p=perl%2Fmodules%2FMac-NSGetExecutablePath.git"
       }
    },
-   "version" : "0.01"
+   "version" : "0.02"
 }
index 8f7c092570e26bf0242244dffe40d0af2b782aa3..f640df4f60b24ebc36882e2ab525e619b669cd2b 100644 (file)
--- a/META.yml
+++ b/META.yml
@@ -31,4 +31,4 @@ resources:
   homepage: http://search.cpan.org/dist/Mac-NSGetExecutablePath/
   license: http://dev.perl.org/licenses/
   repository: http://git.profvince.com/?p=perl%2Fmodules%2FMac-NSGetExecutablePath.git
-version: 0.01
+version: 0.02
diff --git a/README b/README
index 5f0836c414af62be66b72258e6963e8c0ca1fc7b..3d62560c70ebff93a0722882aac0a61e01573de7 100644 (file)
--- a/README
+++ b/README
@@ -3,7 +3,7 @@ NAME
     darwin (OS X) system call.
 
 VERSION
-    Version 0.01
+    Version 0.02
 
 SYNOPSIS
         sub get_perl_path {
@@ -72,6 +72,10 @@ SUPPORT
 
         perldoc Mac::NSGetExecutablePath
 
+ACKNOWLEDGEMENTS
+    The implementation of this module is inspired by Nicholas Clark's work
+    of adding this feature to perl 5.16.
+
 COPYRIGHT & LICENSE
     Copyright 2012 Vincent Pit, all rights reserved.
 
index e15a6ab72563df3c891ff90493d73a53fb3f014a..0a63805db673525f29c513e50e0f2487fc91eed7 100644 (file)
@@ -11,13 +11,13 @@ Mac::NSGetExecutablePath - Perl interface to the _NSGetExecutablePath darwin (OS
 
 =head1 VERSION
 
-Version 0.01
+Version 0.02
 
 =cut
 
 our $VERSION;
 BEGIN {
- $VERSION = '0.01';
+ $VERSION = '0.02';
 }
 
 =head1 SYNOPSIS