From: Vincent Pit Date: Wed, 15 Oct 2008 21:08:37 +0000 (+0200) Subject: This is 0.07_02 X-Git-Tag: v0.07_02^0 X-Git-Url: http://git.vpit.fr/?p=perl%2Fmodules%2Findirect.git;a=commitdiff_plain;h=d5b6423801b678bb09db6ed84c250be8f8a10ac4 This is 0.07_02 --- diff --git a/Changes b/Changes index 12bc5a2..5f80c08 100644 --- a/Changes +++ b/Changes @@ -1,5 +1,9 @@ Revision history for indirect +0.07_02 2008-10-15 21:10 UTC + + Add : Support and tests for package variables. + + Tst : Coverage improved by removing dead code. + 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 diff --git a/META.yml b/META.yml index 8bdc699..1c6d72c 100644 --- a/META.yml +++ b/META.yml @@ -1,6 +1,6 @@ --- #YAML:1.0 name: indirect -version: 0.07_01 +version: 0.07_02 abstract: Lexically warn about using the indirect object syntax. license: perl author: diff --git a/README b/README index 534bd7c..e877f68 100644 --- a/README +++ b/README @@ -2,7 +2,7 @@ NAME indirect - Lexically warn about using the indirect object syntax. VERSION - Version 0.07_01 + Version 0.07_02 SYNOPSIS no indirect; diff --git a/lib/indirect.pm b/lib/indirect.pm index ca069b0..d6890c4 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_01 +Version 0.07_02 =cut our $VERSION; BEGIN { - $VERSION = '0.07_01'; + $VERSION = '0.07_02'; } =head1 SYNOPSIS