Skip to content

Commit

Permalink
Make sure the Makefile has been regenerated
Browse files Browse the repository at this point in the history
  • Loading branch information
davorg committed Dec 6, 2020
1 parent 38c1550 commit bdb5aa2
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
4 changes: 3 additions & 1 deletion Makefile.PL
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,10 @@ WriteMakefile
'VERSION_FROM' => 'lib/Number/Fraction.pm',
'PREREQ_PM' => {
'Carp' => 0,
'Moose' => 0,
'Moo' => 0,
'MooX::Types::MooseLike::Base' => 0,
'Test::More' => 0,
'Test::Warn' => 0,
'overload' => 0
},
'INSTALLDIRS' => 'site',
Expand Down
6 changes: 3 additions & 3 deletions lib/Number/Fraction.pm
Original file line number Diff line number Diff line change
Expand Up @@ -165,9 +165,9 @@ For example:
0.5 ** '2/1' Returns a Number::Fraction ('1/4')
0.25 ** '1/2' Returns a Number::Fraction ('1/2')
=head2 Version 2: Now With Added Moose
=head2 Version 3: Now With Added Moo
Version 2 of Number::Fraction has been reimplemented using Moose. You should
Version 3 of Number::Fraction has been reimplemented using Moo. You should
see very little difference in the way that the class works. The only difference
I can see is that C<new> used to return C<undef> if it couldn't create a valid
object from its arguments, it now dies. If you aren't sure of the values that
Expand All @@ -188,7 +188,7 @@ use Carp;
use Moo;
use MooX::Types::MooseLike::Base qw/Int/;

our $VERSION = '3.0.0';
our $VERSION = '3.0.1';

my $_mixed = 0;

Expand Down

0 comments on commit bdb5aa2

Please sign in to comment.