From: Vincent Pit Date: Wed, 22 Oct 2008 14:42:22 +0000 (+0200) Subject: This is 0.08 X-Git-Tag: v0.08^0 X-Git-Url: http://git.vpit.fr/?p=perl%2Fmodules%2Findirect.git;a=commitdiff_plain;h=3da3422a177506a76087adc565afc06564df0b99 This is 0.08 --- diff --git a/Changes b/Changes index 7ccb803..94b0920 100644 --- a/Changes +++ b/Changes @@ -1,5 +1,9 @@ Revision history for indirect +0.08 2008-10-22 14:45 UTC + + Fix : A rare edge case for package whose names are prefix of 'main'. + + Tst : Test $$ as variable and state variables. + 0.07_03 2008-10-17 20:10 UTC + Add : Support and tests for variables with spaces after the sigil. + Upd : META.yml spec updated to 1.4. diff --git a/META.yml b/META.yml index 9af5452..cae9804 100644 --- a/META.yml +++ b/META.yml @@ -1,6 +1,6 @@ --- #YAML:1.0 name: indirect -version: 0.07_03 +version: 0.08 abstract: Lexically warn about using the indirect object syntax. author: - Vincent Pit diff --git a/README b/README index c320981..d880a9c 100644 --- a/README +++ b/README @@ -2,7 +2,7 @@ NAME indirect - Lexically warn about using the indirect object syntax. VERSION - Version 0.07_03 + Version 0.08 SYNOPSIS no indirect; @@ -43,6 +43,11 @@ DEPENDENCIES XSLoader (standard since perl 5.006). +CAVEATS + "meth $obj" (no semicolon) at the end of a file won't be seen as an + indirect object syntax, although it will as soon as there is another + token before the end (as in "meth $obj;" or "meth $obj 1"). + AUTHOR Vincent Pit, "", . diff --git a/lib/indirect.pm b/lib/indirect.pm index b1278f8..ebfb264 100644 --- a/lib/indirect.pm +++ b/lib/indirect.pm @@ -9,13 +9,13 @@ indirect - Lexically warn about using the indirect object syntax. =head1 VERSION -Version 0.07_03 +Version 0.08 =cut our $VERSION; BEGIN { - $VERSION = '0.07_03'; + $VERSION = '0.08'; } =head1 SYNOPSIS