diff options
author | Steve Peters <steve@fisharerojo.org> | 2006-01-06 21:59:00 +0000 |
---|---|---|
committer | Steve Peters <steve@fisharerojo.org> | 2006-01-06 21:59:00 +0000 |
commit | 34ba6322b644154d55680c95808981776852ae24 (patch) | |
tree | aabe0a4ab0822979a1d0ba9134c969c4c9f52a53 /lib/version.pod | |
parent | 29ecdb6fa31693daf50c1386a8ec5d92fb7b0313 (diff) | |
download | perl-34ba6322b644154d55680c95808981776852ae24.tar.gz |
Upgrade to version-0.52
p4raw-id: //depot/perl@26685
Diffstat (limited to 'lib/version.pod')
-rw-r--r-- | lib/version.pod | 25 |
1 files changed, 18 insertions, 7 deletions
diff --git a/lib/version.pod b/lib/version.pod index 509089cd12..a8742033fe 100644 --- a/lib/version.pod +++ b/lib/version.pod @@ -55,13 +55,24 @@ and to not rely on hidden behavior of the parser. =item * Be careful If you are using Module::Build or ExtUtils::MakeMaker, so that you can -release your module to CPAN, you have to recognize that none of those -programs currently handles version objects natively (yet). That also -goes for the CPAN indexer (PAUSE). Although there are modules on CPAN -that employ the version module internally, the support for assigning a -module $VERSION scalar is still lacking. Both Module::Build and the -PAUSE indexer will [hopefully soon] include support for version -objects. +release your module to CPAN, you have to recognize that neither of those +programs completely handles version objects natively (yet). If you use +version objects with Module::Build, you should add an explicit dependency +to the release of version.pm in your Build.PL: + + my $builder = Module::Build->new( + ... + requires => { + ... , + 'version' => 0.50, + ..., + }, + ... + ); + +and it should Just Work(TM). Module::Build will [hopefully soon] +include full support for version objects; there are no current plans +to patch ExtUtils::MakeMaker to support version objects. =head2 What IS a version |