Skip to content

Commit e74f3ef

Browse files
author
Mitchell Hentges
committed
Release 1.3.3
1 parent e854cd9 commit e74f3ef

File tree

2 files changed

+10
-10
lines changed

2 files changed

+10
-10
lines changed

README.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -36,13 +36,13 @@ System.out.println(unkown.getClass());
3636
<dependency>
3737
<groupId>ca.fuzzlesoft</groupId>
3838
<artifactId>json-parse</artifactId>
39-
<version>1.3.2</version>
39+
<version>1.3.3</version>
4040
</dependency>
4141
```
4242

4343
**Gradle**
4444
```
45-
compile 'ca.fuzzlesoft:json-parse:1.3.2'
45+
compile 'ca.fuzzlesoft:json-parse:1.3.3'
4646
```
4747

4848
## Features
@@ -53,19 +53,19 @@ If incorrect JSON is passed to `JsonParse`, the thrown exception will explain _w
5353

5454
```
5555
{"outer": {"inner": {"a": true, "b": nulll}}}
56-
outer.inner.b: "nulll" is not a valid constant. Missing quotes?
56+
<root>.outer.inner.b: "nulll" is not a valid constant. Missing quotes?
5757
5858
{"outer": {"inner": {"a": true "b": false}}}
59-
outer.inner.a: wasn't followed by a comma
59+
<root>.outer.inner.a: wasn't followed by a comma
6060
6161
{"outer": {"no-colon" true}}
62-
outer.no-colon: "no-colon" wasn't followed by a colon
62+
<root>.outer.no-colon: "no-colon" wasn't followed by a colon
6363
6464
{"object": {no-quotes: true}}
65-
object: unexpected character 'n' where a property name is expected. Missing quotes?
65+
<root>.object: unexpected character 'n' where a property name is expected. Missing quotes?
6666
6767
{"outer": {"sick-list": [{}, {"inner": [1, [1, 2, 3, [fasle]]]}]}}
68-
outer.sick-list.[1].inner.[1].[3].[0]: "fasle" is not a valid constant. Missing quotes?
68+
<root>.outer.sick-list.[1].inner.[1].[3].[0]: "fasle" is not a valid constant. Missing quotes?
6969
```
7070

7171

@@ -122,10 +122,10 @@ List<Object> list = JsonParse.list(listString);
122122

123123
## FAQ
124124

125-
* Can this convert from JSON directly to `SomeObject`?
125+
* Can this convert from JSON directly to Plain Old Java Objects?
126126

127127
Unfortunately not. JSON doesn't have any type information, so explicit knowledge is required before JSON can be
128-
converted. This is the job of a "binding framework"
128+
converted. That would be the job of a "binding framework"
129129

130130
* Why is the code squashed so much?
131131

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
<groupId>ca.fuzzlesoft</groupId>
66
<artifactId>json-parse</artifactId>
7-
<version>1.3.2</version>
7+
<version>1.3.3</version>
88
<packaging>jar</packaging>
99

1010
<name>Json Parse</name>

0 commit comments

Comments
 (0)