From: Vincent Pit Date: Fri, 2 Nov 2012 00:54:30 +0000 (-0200) Subject: This is 0.02 X-Git-Tag: v0.02^0 X-Git-Url: http://git.vpit.fr/?p=perl%2Fmodules%2FMac-NSGetExecutablePath.git;a=commitdiff_plain;h=94000bf6a3b8df512da6d62b9d89bf0211b4f775 This is 0.02 --- diff --git a/Changes b/Changes index a72ba10..0bd686c 100644 --- 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. diff --git a/META.json b/META.json index 8222885..79d448a 100644 --- 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" } diff --git a/META.yml b/META.yml index 8f7c092..f640df4 100644 --- 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 5f0836c..3d62560 100644 --- 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. diff --git a/lib/Mac/NSGetExecutablePath.pm b/lib/Mac/NSGetExecutablePath.pm index e15a6ab..0a63805 100644 --- a/lib/Mac/NSGetExecutablePath.pm +++ b/lib/Mac/NSGetExecutablePath.pm @@ -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