Skip to content

Commit

Permalink
Forgot to switch Moose to Moo in prereqs. Bumper to bigger version
Browse files Browse the repository at this point in the history
  • Loading branch information
davorg committed Dec 6, 2020
1 parent 6106d82 commit 52fc411
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions Build.PL
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@ my $build = Module::Build->new(
module_name => 'Number::Fraction',
license => 'perl',
requires => {
perl => '5.8.6',
Carp => 0,
overload => 0,
Moose => 0,
perl => '5.8.6',
Carp => 0,
overload => 0,
Moo => 0,
},
build_requires => {
'Test::More' => 0,
Expand Down
2 changes: 1 addition & 1 deletion lib/Number/Fraction.pm
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,7 @@ use Carp;
use Moo;
use MooX::Types::MooseLike::Base qw/Int/;

our $VERSION = '2.1.0';
our $VERSION = '3.0.0';

my $_mixed = 0;

Expand Down

0 comments on commit 52fc411

Please sign in to comment.