v2.6.0
This commit is contained in:
commit
56880ce519
4 changed files with 10 additions and 6 deletions
|
@ -1,3 +1,7 @@
|
||||||
|
v2.6.0
|
||||||
|
|
||||||
|
* equivalent to v2.5.3 but created for semver reasons
|
||||||
|
|
||||||
v2.5.3
|
v2.5.3
|
||||||
|
|
||||||
* add a `mix.exs` to be buildable by both mix and rebar
|
* add a `mix.exs` to be buildable by both mix and rebar
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
# jsx (v2.5.3) #
|
# jsx (v2.6.0) #
|
||||||
|
|
||||||
|
|
||||||
an erlang application for consuming, producing and manipulating [json][json].
|
an erlang application for consuming, producing and manipulating [json][json].
|
||||||
|
@ -6,11 +6,11 @@ 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: [](http://travis-ci.org/talentdeficit/jsx)
|
current status: [](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
|
||||||
|
|
||||||
copyright 2010-2014 alisdair sullivan
|
copyright 2010-2015 alisdair sullivan
|
||||||
|
|
||||||
## really important note ##
|
## really important note ##
|
||||||
|
|
||||||
|
|
4
mix.exs
4
mix.exs
|
@ -4,7 +4,7 @@ use Mix.Project
|
||||||
def project do
|
def project do
|
||||||
[
|
[
|
||||||
app: :jsx,
|
app: :jsx,
|
||||||
version: "2.5.3",
|
version: "2.6.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,
|
||||||
|
@ -16,7 +16,7 @@ use Mix.Project
|
||||||
defp opts(:dev), do: [d: :TEST]
|
defp opts(:dev), do: [d: :TEST]
|
||||||
defp opts(_), do: []
|
defp opts(_), do: []
|
||||||
|
|
||||||
defp deps(:dev), do: [{:mixunit, "~> 0.9.1"}]
|
defp deps(:dev), do: [{:mixunit, "~> 0.9.1", [optional: true]}]
|
||||||
defp deps(_), do: []
|
defp deps(_), do: []
|
||||||
|
|
||||||
defp package do
|
defp package do
|
||||||
|
|
|
@ -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.3"},
|
{vsn, "2.6.0"},
|
||||||
{modules, [
|
{modules, [
|
||||||
jsx,
|
jsx,
|
||||||
jsx_encoder,
|
jsx_encoder,
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue