Skip to content

Commit 421ea40

Browse files
committed
upgrade to 1.0.26 and update changelog
1 parent ad486f4 commit 421ea40

File tree

4 files changed

+14
-4
lines changed

4 files changed

+14
-4
lines changed

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,14 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
99

1010
### Changed
1111

12+
## 1.0.26 - 2019-11-07
13+
14+
### Added
15+
16+
### Changed
17+
18+
- fixes #208 error when same ref name in different ref files. Thanks @andersonf
19+
1220
## 1.0.25 - 2019-11-06
1321

1422
### Added

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -71,15 +71,15 @@ Maven:
7171
<dependency>
7272
<groupId>com.networknt</groupId>
7373
<artifactId>json-schema-validator</artifactId>
74-
<version>1.0.25</version>
74+
<version>1.0.26</version>
7575
</dependency>
7676
```
7777

7878
Gradle:
7979

8080
```
8181
dependencies {
82-
compile(group: "com.networknt", name: "json-schema-validator", version: "1.0.25");
82+
compile(group: "com.networknt", name: "json-schema-validator", version: "1.0.26");
8383
}
8484
```
8585

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
<modelVersion>4.0.0</modelVersion>
2020
<groupId>com.networknt</groupId>
2121
<artifactId>json-schema-validator</artifactId>
22-
<version>1.0.25</version>
22+
<version>1.0.26</version>
2323
<packaging>bundle</packaging>
2424
<description>A json schema validator that supports draft v4</description>
2525
<url>https://github.com/networknt/json-schema-validator</url>

src/main/java/com/networknt/schema/SchemaValidatorsConfig.java

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,9 @@ public void setTypeLoose(boolean typeLoose) {
6161
* When enabled, {@link JsonValidator#validate(JsonNode, JsonNode, String)}
6262
* or {@link JsonValidator#validate(JsonNode)} doesn't return any {@link Set}&lt;{@link ValidationMessage}&gt;,
6363
* instead a {@link JsonSchemaException} is thrown as soon as a validation errors is discovered.
64-
* */
64+
*
65+
* @param failFast boolean
66+
*/
6567
public void setFailFast(final boolean failFast) {
6668
this.failFast = failFast;
6769
}

0 commit comments

Comments
 (0)