Skip to content

Commit

Permalink
Released version 3.06
Browse files Browse the repository at this point in the history
 - Fix coercing integers and numbers #147
 - Changed recursion guard to not keeping tracking of plain scalars #147
  • Loading branch information
Jan Henning Thorsen committed Feb 14, 2019
1 parent 112451c commit 8b19ba0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Changes
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Revision history for perl distribution JSON-Validator

3.06 Not Released
3.06 2019-02-14T18:24:29+0100
- Fix coercing integers and numbers #147
- Changed recursion guard to not keeping tracking of plain scalars #147

Expand Down
2 changes: 1 addition & 1 deletion lib/JSON/Validator.pm
Original file line number Diff line number Diff line change
Expand Up @@ -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.05';
our $VERSION = '3.06';
our @EXPORT_OK = qw(joi validate_json);

my $BUNDLED_CACHE_DIR = path(path(__FILE__)->dirname, qw(Validator cache));
Expand Down

0 comments on commit 8b19ba0

Please sign in to comment.