Skip to content

Commit c0b1d6d

Browse files
increment $VERSION after 0.603 release
1 parent c643708 commit c0b1d6d

17 files changed

+18
-16
lines changed

Changes

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
Revision history for JSON-Schema-Modern
22

3+
{{$NEXT}}
4+
35
0.603 2025-02-28 23:35:43Z
46
- fix Sereal serialization hooks
57
- various performance improvements when dealing with base URIs

lib/JSON/Schema/Modern.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ package JSON::Schema::Modern;
55
# ABSTRACT: Validate data against a schema using a JSON Schema
66
# KEYWORDS: JSON Schema validator data validation structure specification
77

8-
our $VERSION = '0.603';
8+
our $VERSION = '0.604';
99

1010
use 5.020; # for fc, unicode_strings features
1111
use Moo;

lib/JSON/Schema/Modern/Annotation.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ package JSON::Schema::Modern::Annotation;
44
# vim: set ts=8 sts=2 sw=2 tw=100 et :
55
# ABSTRACT: Contains a single annotation from a JSON Schema evaluation
66

7-
our $VERSION = '0.603';
7+
our $VERSION = '0.604';
88

99
use 5.020;
1010
use Moo;

lib/JSON/Schema/Modern/Document.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ package JSON::Schema::Modern::Document;
44
# vim: set ts=8 sts=2 sw=2 tw=100 et :
55
# ABSTRACT: One JSON Schema document
66

7-
our $VERSION = '0.603';
7+
our $VERSION = '0.604';
88

99
use 5.020;
1010
use Moo;

lib/JSON/Schema/Modern/Error.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ package JSON::Schema::Modern::Error;
44
# vim: set ts=8 sts=2 sw=2 tw=100 et :
55
# ABSTRACT: Contains a single error from a JSON Schema evaluation
66

7-
our $VERSION = '0.603';
7+
our $VERSION = '0.604';
88

99
use 5.020;
1010
use Moo;

lib/JSON/Schema/Modern/Result.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ package JSON::Schema::Modern::Result;
44
# vim: set ts=8 sts=2 sw=2 tw=100 et :
55
# ABSTRACT: Contains the result of a JSON Schema evaluation
66

7-
our $VERSION = '0.603';
7+
our $VERSION = '0.604';
88

99
use 5.020;
1010
use Moo;

lib/JSON/Schema/Modern/ResultNode.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ package JSON::Schema::Modern::ResultNode;
44
# vim: set ts=8 sts=2 sw=2 tw=100 et :
55
# ABSTRACT: Common code for nodes of a JSON::Schema::Modern::Result
66

7-
our $VERSION = '0.603';
7+
our $VERSION = '0.604';
88

99
use 5.020;
1010
use Moo::Role;

lib/JSON/Schema/Modern/Utilities.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ package JSON::Schema::Modern::Utilities;
44
# vim: set ts=8 sts=2 sw=2 tw=100 et :
55
# ABSTRACT: Internal utilities for JSON::Schema::Modern
66

7-
our $VERSION = '0.603';
7+
our $VERSION = '0.604';
88

99
use 5.020;
1010
use strictures 2;

lib/JSON/Schema/Modern/Vocabulary.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ package JSON::Schema::Modern::Vocabulary;
44
# vim: set ts=8 sts=2 sw=2 tw=100 et :
55
# ABSTRACT: Base role for JSON Schema vocabulary classes
66

7-
our $VERSION = '0.603';
7+
our $VERSION = '0.604';
88

99
use 5.020;
1010
use Moo::Role;

lib/JSON/Schema/Modern/Vocabulary/Applicator.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ package JSON::Schema::Modern::Vocabulary::Applicator;
44
# vim: set ts=8 sts=2 sw=2 tw=100 et :
55
# ABSTRACT: Implementation of the JSON Schema Applicator vocabulary
66

7-
our $VERSION = '0.603';
7+
our $VERSION = '0.604';
88

99
use 5.020;
1010
use Moo;

0 commit comments

Comments
 (0)