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
|
||||
|
||||
* `return_maps` option
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
# jsx (v2.2) #
|
||||
# jsx (v2.3) #
|
||||
|
||||
an erlang application for consuming, producing and manipulating [json][json].
|
||||
inspired by [yajl][yajl]
|
||||
|
|
|
@ -4,7 +4,7 @@ use Mix.Project
|
|||
def project do
|
||||
[
|
||||
app: :jsx,
|
||||
version: "2.2.0",
|
||||
version: "2.3.0",
|
||||
description: "an erlang application for consuming, producing and manipulating json. inspired by yajl",
|
||||
package: package
|
||||
]
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
{application, jsx,
|
||||
[
|
||||
{description, "a streaming, evented json parsing toolkit"},
|
||||
{vsn, "2.2.0"},
|
||||
{vsn, "2.3.0"},
|
||||
{modules, [
|
||||
jsx,
|
||||
jsx_encoder,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue