Skip to content

Commit

Permalink
Switch to Types::Standard. Prep v3.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
davorg committed Feb 25, 2024
1 parent ff28fa2 commit df9b35a
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 5 deletions.
4 changes: 2 additions & 2 deletions Build.PL
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,11 @@ my $build = Module::Build->new(
Carp => 0,
overload => 0,
Moo => 0,
MooX::Types::MooseLike::Base => 0,
Types::Standard => 0,
},
build_requires => {
'Test::More' => 0,
'Test::Warn' => 0,
'Test::Warn' => 0,
},
build_recommends => {
'Test::Pod' => 0,
Expand Down
10 changes: 10 additions & 0 deletions Changes.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

Older changes to this project are in Changes.old.

## [3.1.0] - 2024-02-26

### Changed

- Switched to using Types::Standard

### Fixed

- Removed duplicate from MANIFEST

## [3.0.5] - 2024-02-25

### Fixed
Expand Down
2 changes: 1 addition & 1 deletion Makefile.PL
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@ WriteMakefile
'PREREQ_PM' => {
'Carp' => 0,
'Moo' => 0,
'MooX::Types::MooseLike::Base' => 0,
'Test::More' => 0,
'Test::Warn' => 0,
'Types::Standard' => 0,
'overload' => 0
},
'INSTALLDIRS' => 'site',
Expand Down
4 changes: 2 additions & 2 deletions lib/Number/Fraction.pm
Original file line number Diff line number Diff line change
Expand Up @@ -186,9 +186,9 @@ use warnings;

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

our $VERSION = '3.0.5';
our $VERSION = '3.1.0';

my $_mixed = 0;

Expand Down

0 comments on commit df9b35a

Please sign in to comment.