Subject: | feature request: support $V |
It would be nice if this module would support the V=1.23 override like most of the other versionprovider modules do... e.g.:
sub provide_version {
my $self = shift;
# override (or maybe needed to initialize)
return $ENV{V} if exists $ENV{V};
...
}
This makes it possible to cut a tarball using a different version without having to edit any files.