Skip to content

Release/0.18 #64

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions Changes
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@ Revision history for Data-Validate-Sanctions

{{$NEXT}}

0.18 2024-12-11 15:20:58+00:00 UTC
add sanction list providers

0.17 2024-05-27 12:42:34+00:00 UTC
Cron sanction update failed for OFAC-SDN and OFAC-Consolidated

Expand Down
8 changes: 7 additions & 1 deletion Makefile.PL
Original file line number Diff line number Diff line change
Expand Up @@ -32,13 +32,16 @@ my %WriteMakefileArgs = (
"Data::Compare" => 0,
"Date::Utility" => 0,
"DateTime::Format::Strptime" => 0,
"Digest::SHA" => 0,
"Encode" => 0,
"Exporter" => 0,
"File::ShareDir" => 0,
"File::Temp" => 0,
"File::stat" => 0,
"FindBin" => 0,
"Getopt::Long" => "2.42",
"IO::Uncompress::Unzip" => 0,
"JSON" => 0,
"JSON::MaybeUTF8" => 0,
"List::Util" => 0,
"Locale::Country" => "3.66",
Expand Down Expand Up @@ -81,7 +84,7 @@ my %WriteMakefileArgs = (
"YAML" => 0,
"utf8" => 0
},
"VERSION" => "0.18",
"VERSION" => "0.19",
"test" => {
"TESTS" => "t/*.t"
}
Expand All @@ -95,6 +98,8 @@ my %FallbackPrereqs = (
"Data::Compare" => 0,
"Date::Utility" => 0,
"DateTime::Format::Strptime" => 0,
"Digest::SHA" => 0,
"Encode" => 0,
"Exporter" => 0,
"ExtUtils::MakeMaker" => 0,
"File::ShareDir" => 0,
Expand All @@ -107,6 +112,7 @@ my %FallbackPrereqs = (
"IO::Handle" => 0,
"IO::Uncompress::Unzip" => 0,
"IPC::Open3" => 0,
"JSON" => 0,
"JSON::MaybeUTF8" => 0,
"List::Util" => 0,
"Locale::Country" => "3.66",
Expand Down
2 changes: 1 addition & 1 deletion lib/Data/Validate/Sanctions.pm
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ use Locale::Country;
use Text::Trim qw(trim);
use Clone qw(clone);

our $VERSION = '0.18';
our $VERSION = '0.19';

my $sanction_file;
my $instance;
Expand Down
Loading