let's not hype it up too much
This commit is contained in:
alisdair sullivan 2014-12-03 23:16:41 -08:00
parent 0222c89061
commit c1d794f7a9
4 changed files with 11 additions and 3 deletions

View file

@ -1,3 +1,11 @@
v2.3
* switched to a faster implementation of string parsing in both
the decoder and encoder
* expand `uescape` option to the decoder
* allow control codes in json passed to decoder (contrary to the spec,
yes)
v2.2 v2.2
* `return_maps` option * `return_maps` option

View file

@ -1,4 +1,4 @@
# jsx (v2.2) # # jsx (v2.3) #
an erlang application for consuming, producing and manipulating [json][json]. an erlang application for consuming, producing and manipulating [json][json].
inspired by [yajl][yajl] inspired by [yajl][yajl]

View file

@ -4,7 +4,7 @@ use Mix.Project
def project do def project do
[ [
app: :jsx, app: :jsx,
version: "2.2.0", version: "2.3.0",
description: "an erlang application for consuming, producing and manipulating json. inspired by yajl", description: "an erlang application for consuming, producing and manipulating json. inspired by yajl",
package: package package: package
] ]

View file

@ -1,7 +1,7 @@
{application, jsx, {application, jsx,
[ [
{description, "a streaming, evented json parsing toolkit"}, {description, "a streaming, evented json parsing toolkit"},
{vsn, "2.2.0"}, {vsn, "2.3.0"},
{modules, [ {modules, [
jsx, jsx,
jsx_encoder, jsx_encoder,