This commit is contained in:
alisdair sullivan 2015-03-03 10:44:36 -08:00
parent 84f4b7fb40
commit 9706401c0e
3 changed files with 8 additions and 3 deletions

View file

@ -1,3 +1,8 @@
v2.5.1
* assume all datetimes are UTC time and add `Z` designator to indicate
* fix parsing issue with datetimes in arrays
v2.5.0 v2.5.0
* `consult/2` function for reading a file directly to a json term * `consult/2` function for reading a file directly to a json term

View file

@ -1,11 +1,11 @@
# jsx (v2.5.0) # # jsx (v2.5.1) #
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]
**jsx** is built via [rebar][rebar] and continuous integration testing provided courtesy [travis-ci][travis] **jsx** is built via [rebar][rebar] and continuous integration testing provided courtesy [travis-ci][travis]
current status: [![Build Status](https://secure.travis-ci.org/talentdeficit/jsx.png?branch=develop)](http://travis-ci.org/talentdeficit/jsx) current status: [![Build Status](https://secure.travis-ci.org/talentdeficit/jsx.png?branch=master)](http://travis-ci.org/talentdeficit/jsx)
**jsx** is released under the terms of the [MIT][MIT] license **jsx** is released under the terms of the [MIT][MIT] license

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.5.0"}, {vsn, "2.5.1"},
{modules, [ {modules, [
jsx, jsx,
jsx_encoder, jsx_encoder,