diff --git a/Changes b/Changes index 04df1c4a..176b6b0e 100644 --- a/Changes +++ b/Changes @@ -1,6 +1,6 @@ Revision history for perl distribution JSON-Validator -3.04 Not Released +3.04 2019-01-21T09:39:50+0900 - Fix "uri" check, so that it only accept ASCII characters. Note that this fix might be an undesired change for your application. If so, then update the "uri" format in your schema to "iri". diff --git a/lib/JSON/Validator.pm b/lib/JSON/Validator.pm index 3d7f5c53..dffb6cf0 100644 --- a/lib/JSON/Validator.pm +++ b/lib/JSON/Validator.pm @@ -24,7 +24,7 @@ use constant REPORT => $ENV{JSON_VALIDATOR_REPORT} // DEBUG >= 2; use constant RECURSION_LIMIT => $ENV{JSON_VALIDATOR_RECURSION_LIMIT} || 100; use constant SPECIFICATION_URL => 'http://json-schema.org/draft-04/schema#'; -our $VERSION = '3.03'; +our $VERSION = '3.04'; our @EXPORT_OK = qw(joi validate_json); my $BUNDLED_CACHE_DIR = path(path(__FILE__)->dirname, qw(Validator cache));