v2.3.0
let's not hype it up too much
This commit is contained in:
parent
0222c89061
commit
c1d794f7a9
4 changed files with 11 additions and 3 deletions
|
@ -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
|
||||||
|
|
|
@ -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]
|
||||||
|
|
|
@ -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
|
||||||
]
|
]
|
||||||
|
|
|
@ -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,
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue