Skip Menu |

This queue is for tickets about the Hash-AutoHash-Args CPAN distribution.

Report information
The Basics
Id: 53254
Status: resolved
Priority: 0/
Queue: Hash-AutoHash-Args

People
Owner: NATG [...] cpan.org
Requestors: jquelin [...] cpan.org
Cc:
AdminCc:

Bug Information
Severity: (no value)
Broken in: 1.10
Fixed in: (no value)



Subject: Hash::AutoHash::Args::V0 version declared as private (my)
in Hash::AutoHash::Args::V0, the version is declared as:
    my $VERSION='1.10';

since cpanplus is using an eval on the version line, it reports an unparsable version for currently installed module:

$ cpanp o
...
    8   Unparsable     1.10     Hash::AutoHash::Args::V0             NATG
...

to fix this, declare $VERSION with our, or use vars.
RT-Send-CC: natg [...] shore.net
Oops.  My bad.  Thanks for finding this.  I'll fix it promptly.

Best,
Nat

On Thu Dec 31 09:04:30 2009, JQUELIN wrote:
Show quoted text
> in Hash::AutoHash::Args::V0, the version is declared as:
> my $VERSION='1.10';
>
> since cpanplus is using an eval on the version line, it reports an
> unparsable version for currently installed module:
>
> $ cpanp o
> ...
> 8 Unparsable 1.10 Hash::AutoHash::Args::V0
> NATG
> ...
>
> to fix this, declare $VERSION with our, or use vars.


Done.   It's fixed in version 1.11

On Thu Dec 31 13:19:34 2009, NATG wrote:
Show quoted text
> Oops. My bad. Thanks for finding this. I'll fix it promptly.
>
> Best,
> Nat
>
> On Thu Dec 31 09:04:30 2009, JQUELIN wrote:
> > in Hash::AutoHash::Args::V0, the version is declared as:
> > my $VERSION='1.10';
> >
> > since cpanplus is using an eval on the version line, it reports an
> > unparsable version for currently installed module:
> >
> > $ cpanp o
> > ...
> > 8 Unparsable 1.10 Hash::AutoHash::Args::V0
> > NATG
> > ...
> >
> > to fix this, declare $VERSION with our, or use vars.