This commit is contained in:
alisdair sullivan 2015-10-08 22:58:19 -07:00
parent cdd01c6eac
commit 3074d4865b
3 changed files with 6 additions and 8 deletions

View file

@ -1,4 +1,4 @@
# jsx (v2.7.2) # # jsx (v2.8.0) #
an erlang application for consuming, producing and manipulating [json][json]. an erlang application for consuming, producing and manipulating [json][json].
@ -166,11 +166,9 @@ ignores bad escape sequences leaving them in strings unaltered
if you're migrating from jsx v1.x to v2.x in most cases you won't need to if you're migrating from jsx v1.x to v2.x in most cases you won't need to
make any changes to your code make any changes to your code
support for encoding otp 17.0's new map type is now enabled by default when compiling support for otp 17.0's new map type is now enabled by default when compiling
via rebar for any release that supports them. jsx should still compile cleanly for via rebar for any release that supports them. jsx should still compile cleanly for
earlier releases without any user intervention. if you'd like to disable maps you can earlier releases without any user intervention
either set the env variable `JSX_NOMAPS` or by uncommenting the applicable tuple in
`rebar.config`
if you used any of `replaced_bad_utf8`, `single_quoted_strings`, `comments`, if you used any of `replaced_bad_utf8`, `single_quoted_strings`, `comments`,
`ignored_bad_escapes` or `relax` you can simply omit them from your calls to jsx, `ignored_bad_escapes` or `relax` you can simply omit them from your calls to jsx,

View file

@ -4,7 +4,7 @@ use Mix.Project
def project do def project do
[ [
app: :jsx, app: :jsx,
version: "2.7.2", version: "2.8.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",
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.7.2"}, {vsn, "2.8.0"},
{modules, [ {modules, [
jsx, jsx,
jsx_encoder, jsx_encoder,