@@ -3,7 +3,7 @@ JSON in Java [package org.json]
33
44[ ![ Maven Central] ( https://img.shields.io/maven-central/v/org.json/json.svg )] ( https://mvnrepository.com/artifact/org.json/json )
55
6- ** [ Click here if you just want the jar file.] ( http://central.maven.org/maven2/org/json/json/20180813/json-20180813.jar ) **
6+ ** [ Click here if you just want the latest release jar file.] ( http://central.maven.org/maven2/org/json/json/20180813/json-20180813.jar ) **
77
88JSON is a light-weight, language independent, data interchange format.
99See http://www.JSON.org/
@@ -88,15 +88,15 @@ https://github.com/stleary/JSON-Java-unit-test
8888
8989Numeric types in this package comply with
9090[ ECMA-404: The JSON Data Interchange Format] ( http://www.ecma-international.org/publications/files/ECMA-ST/ECMA-404.pdf ) and
91- [ RFC 7159 : The JavaScript Object Notation (JSON) Data Interchange Format] ( https://tools.ietf.org/html/rfc7159 #section-6 ) .
91+ [ RFC 8259 : The JavaScript Object Notation (JSON) Data Interchange Format] ( https://tools.ietf.org/html/rfc8259 #section-6 ) .
9292This package fully supports ` Integer ` , ` Long ` , and ` Double ` Java types. Partial support
9393for ` BigInteger ` and ` BigDecimal ` values in ` JSONObject ` and ` JSONArray ` objects is provided
9494in the form of ` get() ` , ` opt() ` , and ` put() ` API methods.
9595
9696Although 1.6 compatibility is currently supported, it is not a project goal and may be
9797removed in some future release.
9898
99- In compliance with RFC7159 page 10 section 9, the parser is more lax with what is valid
99+ In compliance with RFC8259 page 10 section 9, the parser is more lax with what is valid
100100JSON than the Generator. For Example, the tab character (U+0009) is allowed when reading
101101JSON Text strings, but when output by the Generator, tab is properly converted to \t in
102102the string. Other instances may occur where reading invalid JSON text does not cause an
0 commit comments