Skip to content

Commit

Permalink
Release 3.0.3
Browse files Browse the repository at this point in the history
  • Loading branch information
davorg committed Dec 9, 2020
1 parent 1c8560b commit d339306
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Build.PL
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ my $build = Module::Build->new(
module_name => 'Number::Fraction',
license => 'perl',
requires => {
perl => '5.8.6',
perl => '5.10.0',
Carp => 0,
overload => 0,
Moo => 0,
Expand Down
4 changes: 4 additions & 0 deletions Changes
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
2020-12-08 Dave Cross <[email protected]>

* We use regex features that are only available in 5.10

2020-12-07 Dave Cross <[email protected]>

* Removed the last remnants of Moose from the code
Expand Down
2 changes: 1 addition & 1 deletion Makefile.PL
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Note: this file was auto-generated by Module::Build::Compat version 0.4231
require 5.008006;
require 5.010000;
use ExtUtils::MakeMaker;
WriteMakefile
(
Expand Down
4 changes: 2 additions & 2 deletions lib/Number/Fraction.pm
Original file line number Diff line number Diff line change
Expand Up @@ -180,15 +180,15 @@ C<eval { ... }> block (or using something equivalent like L<Try::Tiny>).

package Number::Fraction;

use 5.006;
use 5.010;
use strict;
use warnings;

use Carp;
use Moo;
use MooX::Types::MooseLike::Base qw/Int/;

our $VERSION = '3.0.2';
our $VERSION = '3.0.3';

my $_mixed = 0;

Expand Down

0 comments on commit d339306

Please sign in to comment.