Skip to content

Commit

Permalink
Make this module work with perl 5.005 as well.
Browse files Browse the repository at this point in the history
Since this one goes to inc/ and evaluated in end users, this shouldn't strictly force module authors to use 5.8, even if it sounds right :)
  • Loading branch information
miyagawa committed May 11, 2009
1 parent 094e43c commit 8882c4f
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions lib/Module/Install/Repository.pm
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
package Module::Install::Repository;

use strict;
use 5.008_001;
our $VERSION = '0.03';
use 5.005;
use vars qw($VERSION);
$VERSION = '0.03';

use base qw(Module::Install::Base);

Expand Down

0 comments on commit 8882c4f

Please sign in to comment.