From: Vincent Pit Date: Thu, 5 Sep 2013 17:50:03 +0000 (+0200) Subject: This is 0.08 X-Git-Tag: v0.08^0 X-Git-Url: http://git.vpit.fr/?p=perl%2Fmodules%2Fsubs-auto.git;a=commitdiff_plain;h=f0ab2871aafe59176a1c0ddbe564788b0c1aed09 This is 0.08 --- diff --git a/Changes b/Changes index 5ae1bd1..6eda895 100644 --- a/Changes +++ b/Changes @@ -1,5 +1,12 @@ Revision history for subs-auto +0.08 2013-09-05 17:50 UTC + This is a maintenance release. The code contains no functional change. + Satisfied users of version 0.07 can skip this update. + + Doc : C++ compilers are officially NOT supported. + + Tst : Author tests are no longer bundled with this distribution. + They are only made available to authors in the git repository. + 0.07 2011-02-27 15:45 UTC + Fix : Compatibility with perl 5.13.10. diff --git a/MANIFEST b/MANIFEST index 3f42757..4389b56 100644 --- a/MANIFEST +++ b/MANIFEST @@ -1,5 +1,6 @@ Changes MANIFEST +META.json META.yml Makefile.PL README diff --git a/META.json b/META.json new file mode 100644 index 0000000..694c6d7 --- /dev/null +++ b/META.json @@ -0,0 +1,62 @@ +{ + "abstract" : "Read barewords as subroutine names.", + "author" : [ + "Vincent Pit " + ], + "dynamic_config" : 1, + "generated_by" : "ExtUtils::MakeMaker version 6.74, CPAN::Meta::Converter version 2.132140", + "license" : [ + "perl_5" + ], + "meta-spec" : { + "url" : "http://search.cpan.org/perldoc?CPAN::Meta::Spec", + "version" : "2" + }, + "name" : "subs-auto", + "no_index" : { + "directory" : [ + "t", + "inc" + ] + }, + "prereqs" : { + "build" : { + "requires" : { + "B::Keywords" : "0", + "Carp" : "0", + "ExtUtils::MakeMaker" : "0", + "Test::More" : "0", + "Variable::Magic" : "0.31", + "XSLoader" : "0" + } + }, + "configure" : { + "requires" : { + "ExtUtils::MakeMaker" : "0" + } + }, + "runtime" : { + "requires" : { + "B::Keywords" : "0", + "Carp" : "0", + "Variable::Magic" : "0.31", + "XSLoader" : "0", + "perl" : "5.010" + } + } + }, + "release_status" : "stable", + "resources" : { + "bugtracker" : { + "web" : "http://rt.cpan.org/Dist/Display.html?Name=subs-auto" + }, + "homepage" : "http://search.cpan.org/dist/subs-auto/", + "license" : [ + "http://dev.perl.org/licenses/" + ], + "repository" : { + "url" : "http://git.profvince.com/?p=perl%2Fmodules%2Fsubs-auto.git" + } + }, + "version" : "0.08" +} diff --git a/META.yml b/META.yml index 2fcab45..65a181d 100644 --- a/META.yml +++ b/META.yml @@ -1,37 +1,36 @@ ---- #YAML:1.0 -name: subs-auto -version: 0.07 -abstract: Read barewords as subroutine names. +--- +abstract: 'Read barewords as subroutine names.' author: - - Vincent Pit -license: perl -distribution_type: module -configure_requires: - ExtUtils::MakeMaker: 0 + - 'Vincent Pit ' build_requires: - B::Keywords: 0 - Carp: 0 - ExtUtils::MakeMaker: 0 - Test::More: 0 - Variable::Magic: 0.31 - XSLoader: 0 + B::Keywords: 0 + Carp: 0 + ExtUtils::MakeMaker: 0 + Test::More: 0 + Variable::Magic: 0.31 + XSLoader: 0 +configure_requires: + ExtUtils::MakeMaker: 0 +dynamic_config: 1 +generated_by: 'ExtUtils::MakeMaker version 6.74, CPAN::Meta::Converter version 2.132140' +license: perl +meta-spec: + url: http://module-build.sourceforge.net/META-spec-v1.4.html + version: 1.4 +name: subs-auto +no_index: + directory: + - t + - inc requires: - B::Keywords: 0 - Carp: 0 - perl: 5.01 - Variable::Magic: 0.31 - XSLoader: 0 + B::Keywords: 0 + Carp: 0 + Variable::Magic: 0.31 + XSLoader: 0 + perl: 5.010 resources: - bugtracker: http://rt.cpan.org/NoAuth/ReportBug.html?Queue=subs-auto - homepage: http://search.cpan.org/dist/subs-auto/ - license: http://dev.perl.org/licenses/ - repository: http://git.profvince.com/?p=perl%2Fmodules%2Fsubs-auto.git -no_index: - directory: - - t - - inc -generated_by: ExtUtils::MakeMaker version 6.56 -meta-spec: - url: http://module-build.sourceforge.net/META-spec-v1.4.html - version: 1.4 -dynamic_config: 0 + bugtracker: http://rt.cpan.org/Dist/Display.html?Name=subs-auto + homepage: http://search.cpan.org/dist/subs-auto/ + license: http://dev.perl.org/licenses/ + repository: http://git.profvince.com/?p=perl%2Fmodules%2Fsubs-auto.git +version: 0.08 diff --git a/README b/README index fd9865d..af1bd86 100644 --- a/README +++ b/README @@ -2,7 +2,7 @@ NAME subs::auto - Read barewords as subroutine names. VERSION - Version 0.07 + Version 0.08 SYNOPSIS { @@ -19,7 +19,7 @@ SYNOPSIS # or "print(foo('wut'))" otherwise } # ... but function calls will fail at run-time if you don't # actually define foo somewhere - + foo; # BANG DESCRIPTION @@ -64,12 +64,15 @@ CAVEATS DEPENDENCIES perl 5.10.0. + 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. + Variable::Magic with "uvar" magic enabled (this should be assured by the required perl version). B::Keywords. - Carp (standard since perl 5), XSLoader (since 5.006). + Carp (standard since perl 5), XSLoader (since 5.6.0). AUTHOR Vincent Pit, "", . @@ -95,7 +98,7 @@ ACKNOWLEDGEMENTS Thanks to Sebastien Aperghis-Tramoni for helping to name this pragma. COPYRIGHT & LICENSE - Copyright 2008,2009,2010,2011 Vincent Pit, all rights reserved. + Copyright 2008,2009,2010,2011,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/subs/auto.pm b/lib/subs/auto.pm index d794e62..f9cd109 100644 --- a/lib/subs/auto.pm +++ b/lib/subs/auto.pm @@ -11,13 +11,13 @@ subs::auto - Read barewords as subroutine names. =head1 VERSION -Version 0.07 +Version 0.08 =cut our $VERSION; BEGIN { - $VERSION = '0.07'; + $VERSION = '0.08'; } =head1 SYNOPSIS