This commit is contained in:
alisdair sullivan 2017-02-06 18:48:03 -08:00
parent aebb218f31
commit d5913af1b7
4 changed files with 7 additions and 3 deletions

View file

@ -1,3 +1,7 @@
v2.8.2
* enable `debug_info` for rebar3
v2.8.1 v2.8.1
* enable `debug_info` when used via mix * enable `debug_info` when used via mix

View file

@ -1,4 +1,4 @@
# jsx (v2.8.1) # # jsx (v2.8.2) #
an erlang application for consuming, producing and manipulating [json][json]. an erlang application for consuming, producing and manipulating [json][json].

View file

@ -4,7 +4,7 @@ use Mix.Project
def project do def project do
[ [
app: :jsx, app: :jsx,
version: "2.8.1", version: "2.8.2",
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",
deps: deps(Mix.env), deps: deps(Mix.env),
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.8.1"}, {vsn, "2.8.2"},
{modules, [ {modules, [
jsx, jsx,
jsx_encoder, jsx_encoder,