[DELTA]
Changes for 0.24 Fri Feb 1 18:14:28 2013
============================================
* Resolve [rt #83093] "Won't load modules with apostrophes"
reported by Dave Golden
'Module::Load' => {
'MAINTAINER' => 'kane',
- 'DISTRIBUTION' => 'BINGOS/Module-Load-0.22.tar.gz',
+ 'DISTRIBUTION' => 'BINGOS/Module-Load-0.24.tar.gz',
'FILES' => q[cpan/Module-Load],
'UPSTREAM' => 'cpan',
},
package Module::Load;
-$VERSION = '0.22';
+$VERSION = '0.24';
use strict;
use File::Spec ();
my $pm = shift || '';
## trailing blanks ignored by default. [rt #69886]
- my @parts = split /::/, $_, -1;
+ my @parts = split /::|'/, $_, -1;
## make sure that we can't hop out of @INC
shift @parts if @parts && !$parts[0];