From: Vincent Pit Date: Sat, 17 Jan 2009 12:39:06 +0000 (+0100) Subject: This is 0.10 X-Git-Tag: v0.10^0 X-Git-Url: http://git.vpit.fr/?p=perl%2Fmodules%2Findirect.git;a=commitdiff_plain;h=a9c8dfc5d74939ee2fff9e4cc8f9b9fe54ccad37 This is 0.10 --- diff --git a/Changes b/Changes index affc106..7796227 100644 --- a/Changes +++ b/Changes @@ -1,5 +1,8 @@ Revision history for indirect +0.10 2009-01-17 12:40 UTC + Re-release 0.09_01 as stable. + 0.09_01 2008-12-08 17:55 UTC + Fix : Invalid memory read with "${\(new Foo)}" constructs. The corresponding test is turned back on. diff --git a/META.yml b/META.yml index fdeaee4..694855f 100644 --- a/META.yml +++ b/META.yml @@ -1,6 +1,6 @@ --- #YAML:1.0 name: indirect -version: 0.09_01 +version: 0.10 abstract: Lexically warn about using the indirect object syntax. author: - Vincent Pit diff --git a/README b/README index 50f7a52..b4aad56 100644 --- a/README +++ b/README @@ -2,7 +2,7 @@ NAME indirect - Lexically warn about using the indirect object syntax. VERSION - Version 0.09_01 + Version 0.10 SYNOPSIS no indirect; @@ -38,11 +38,6 @@ METHODS "import" Magically called at each "use indirect". Turns the module off. -DEPENDENCIES - perl 5.8. - - 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 @@ -52,6 +47,11 @@ CAVEATS is due to a shortcoming in the way perl handles the hints hash, which is addressed in perl 5.10. +DEPENDENCIES + perl 5.8. + + XSLoader (standard since perl 5.006). + AUTHOR Vincent Pit, "", . @@ -76,7 +76,7 @@ ACKNOWLEDGEMENTS Bram, for motivation and advices. COPYRIGHT & LICENSE - Copyright 2008 Vincent Pit, all rights reserved. + Copyright 2008-2009 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/indirect.pm b/lib/indirect.pm index 67ef542..b9a81dc 100644 --- a/lib/indirect.pm +++ b/lib/indirect.pm @@ -11,13 +11,13 @@ indirect - Lexically warn about using the indirect object syntax. =head1 VERSION -Version 0.09_01 +Version 0.10 =cut our $VERSION; BEGIN { - $VERSION = '0.09_01'; + $VERSION = '0.10'; } =head1 SYNOPSIS