diff --git a/changelog.md b/changelog.md index f85331c91a88..c6ba157d0682 100644 --- a/changelog.md +++ b/changelog.md @@ -39,6 +39,9 @@ - added `jsonutils.jsonTo` overload with `opt = Joptions()` param. +- `json.%`,`json.to`, `jsonutils.formJson`,`jsonutils.toJson` now work with `uint|uint64` + instead of raising (as in 1.4) or giving wrong results (as in 1.2). + - Added an overload for the `collect` macro that inferes the container type based on the syntax of the last expression. Works with std seqs, tables and sets. diff --git a/lib/pure/json.nim b/lib/pure/json.nim index 5feb81457207..13cd3fb854c1 100644 --- a/lib/pure/json.nim +++ b/lib/pure/json.nim @@ -14,6 +14,14 @@ ## JSON is based on a subset of the JavaScript Programming Language, ## Standard ECMA-262 3rd Edition - December 1999. ## +## See also +## ======== +## * `std/parsejson `_ +## * `std/jsonutils `_ +## * `std/marshal `_ +## * `std/jscore `_ +## +## ## Overview ## ======== ##