From: Vincent Pit Date: Sat, 24 Aug 2013 19:59:35 +0000 (-0300) Subject: This is 0.03 X-Git-Tag: v0.03^0 X-Git-Url: http://git.vpit.fr/?p=perl%2Fmodules%2FMac-NSGetExecutablePath.git;a=commitdiff_plain;h=5492fc9bde30586d2f5ca9156b458cc2493cf5a3 This is 0.03 --- diff --git a/Changes b/Changes index 0bd686c..27670be 100644 --- a/Changes +++ b/Changes @@ -1,5 +1,11 @@ Revision history for Mac-NSGetExecutablePath +0.03 2013-08-24 20:00 UTC + This is a maintenance release. The code contains no functional change. + Satisfied users of version 0.02 can skip this update. + + Tst : Author tests are no longer bundled with this distribution. + They are only made available to authors in the git repository. + 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 diff --git a/META.json b/META.json index 79d448a..109f756 100644 --- a/META.json +++ b/META.json @@ -4,7 +4,7 @@ "Vincent Pit " ], "dynamic_config" : 1, - "generated_by" : "ExtUtils::MakeMaker version 6.6302, CPAN::Meta::Converter version 2.120921", + "generated_by" : "ExtUtils::MakeMaker version 6.72, CPAN::Meta::Converter version 2.132140", "license" : [ "perl_5" ], @@ -46,7 +46,7 @@ "release_status" : "stable", "resources" : { "bugtracker" : { - "web" : "http://rt.cpan.org/NoAuth/ReportBug.html?Queue=Mac-NSGetExecutablePath" + "web" : "http://rt.cpan.org/Dist/Display.html?Name=Mac-NSGetExecutablePath" }, "homepage" : "http://search.cpan.org/dist/Mac-NSGetExecutablePath/", "license" : [ @@ -56,5 +56,5 @@ "url" : "http://git.profvince.com/?p=perl%2Fmodules%2FMac-NSGetExecutablePath.git" } }, - "version" : "0.02" + "version" : "0.03" } diff --git a/META.yml b/META.yml index f640df4..eca233d 100644 --- a/META.yml +++ b/META.yml @@ -11,7 +11,7 @@ build_requires: configure_requires: ExtUtils::MakeMaker: 0 dynamic_config: 1 -generated_by: 'ExtUtils::MakeMaker version 6.6302, CPAN::Meta::Converter version 2.120921' +generated_by: 'ExtUtils::MakeMaker version 6.72, CPAN::Meta::Converter version 2.132140' license: perl meta-spec: url: http://module-build.sourceforge.net/META-spec-v1.4.html @@ -27,8 +27,8 @@ requires: base: 0 perl: 5.006 resources: - bugtracker: http://rt.cpan.org/NoAuth/ReportBug.html?Queue=Mac-NSGetExecutablePath + bugtracker: http://rt.cpan.org/Dist/Display.html?Name=Mac-NSGetExecutablePath 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.02 +version: 0.03 diff --git a/README b/README index 3d62560..58fc6aa 100644 --- a/README +++ b/README @@ -3,7 +3,7 @@ NAME darwin (OS X) system call. VERSION - Version 0.02 + Version 0.03 SYNOPSIS sub get_perl_path { @@ -48,7 +48,7 @@ DEPENDENCIES A C compiler. This module may happen to build with a C++ compiler as well, but don't rely on it, as no guarantee is made in this regard. - Exporter (core since perl 5), XSLoader (since 5.006), base (since + Exporter (core since perl 5), XSLoader (since 5.6.0), base (since 5.004_05). SEE ALSO @@ -77,7 +77,7 @@ ACKNOWLEDGEMENTS of adding this feature to perl 5.16. COPYRIGHT & LICENSE - Copyright 2012 Vincent Pit, all rights reserved. + Copyright 2012,2013 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/Mac/NSGetExecutablePath.pm b/lib/Mac/NSGetExecutablePath.pm index ebc93db..e4df108 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.02 +Version 0.03 =cut our $VERSION; BEGIN { - $VERSION = '0.02'; + $VERSION = '0.03'; } =head1 SYNOPSIS