On Apr 23, 2007, at 3:45 PM, John Peacock wrote:
Rather than changing the
core Module::Build code to call version->new() instead of
Module::Build::Version->new(), it make more sense to leave the
M::B::V module as
is, but eliminate all of the duplicated version code. Essentially,
all that is
required is:
package Module::Build::Version;
use strict;
use vars qw($VERSION);
$VERSION = 0.7203;
use base qw/version/;
This isn't ideal, because it means we would have a full-fledged
dependency on version.pm, rather than the embedded copy we have now.
-Ken