From: Vincent Pit Date: Wed, 15 Oct 2008 16:00:20 +0000 (+0200) Subject: This is 0.07_01 X-Git-Tag: v0.07_01^0 X-Git-Url: http://git.vpit.fr/?p=perl%2Fmodules%2Findirect.git;a=commitdiff_plain;h=c5fbf355ad97cc620713b8f5363bbacfa6960785 This is 0.07_01 --- diff --git a/Changes b/Changes index 7c480b7..12bc5a2 100644 --- a/Changes +++ b/Changes @@ -1,5 +1,10 @@ Revision history for indirect +0.07_01 2008-10-15 16:00 UTC + + Fix : [RT #40055] : Not handling RV2SV => GV(SV) correctly, which + could cause 'no indirect; print' segfaults. Thanks Goro Fuji for + reporting. + 0.06 2008-10-11 16:45 UTC + Doc : Nits. + Tst : Test "no indirect 'anything'", "foo Class->bar", and indirect diff --git a/META.yml b/META.yml index bf9a3a8..8bdc699 100644 --- a/META.yml +++ b/META.yml @@ -1,6 +1,6 @@ --- #YAML:1.0 name: indirect -version: 0.06 +version: 0.07_01 abstract: Lexically warn about using the indirect object syntax. license: perl author: diff --git a/README b/README index 8314442..534bd7c 100644 --- a/README +++ b/README @@ -2,7 +2,7 @@ NAME indirect - Lexically warn about using the indirect object syntax. VERSION - Version 0.06 + Version 0.07_01 SYNOPSIS no indirect; diff --git a/lib/indirect.pm b/lib/indirect.pm index e734781..ca069b0 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.06 +Version 0.07_01 =cut our $VERSION; BEGIN { - $VERSION = '0.06'; + $VERSION = '0.07_01'; } =head1 SYNOPSIS