diff --git a/Changes b/Changes index 6f87561..30daf99 100644 --- a/Changes +++ b/Changes @@ -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 diff --git a/Makefile.PL b/Makefile.PL index fdc53fe..5a38822 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -32,6 +32,8 @@ 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, @@ -39,6 +41,7 @@ my %WriteMakefileArgs = ( "FindBin" => 0, "Getopt::Long" => "2.42", "IO::Uncompress::Unzip" => 0, + "JSON" => 0, "JSON::MaybeUTF8" => 0, "List::Util" => 0, "Locale::Country" => "3.66", @@ -81,7 +84,7 @@ my %WriteMakefileArgs = ( "YAML" => 0, "utf8" => 0 }, - "VERSION" => "0.18", + "VERSION" => "0.19", "test" => { "TESTS" => "t/*.t" } @@ -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, @@ -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", diff --git a/lib/Data/Validate/Sanctions.pm b/lib/Data/Validate/Sanctions.pm index b8862e7..7689889 100644 --- a/lib/Data/Validate/Sanctions.pm +++ b/lib/Data/Validate/Sanctions.pm @@ -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;