http://www.perlmonks.org?node_id=1012344


in reply to Get list of version for particular CPAN distribution ?

Seems I found a solution
use BackPAN::Index; my $backpan = BackPAN::Index->new; my $dist = $backpan->dist("MIME-Base64"); my $releases = $dist->releases; print join "\n", map { $_->version } $releases->all;
it uses BackPAN however (i.e. includes obsolete versions). But for me it's not a major problem.

Replies are listed 'Best First'.
Re^2: Get list of version for particular CPAN distribution ?
by space_monk (Chaplain) on Jan 09, 2013 at 10:33 UTC
    Props for finding the solution to your own question! :-P
    A Monk aims to give answers to those who have none, and to learn from those who know more.