This commit is contained in:
alisdair sullivan 2015-04-20 19:56:13 -07:00
parent cb3b25e1e5
commit 2008e989c8
4 changed files with 7 additions and 3 deletions

View file

@ -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

View file

@ -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].

View file

@ -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", :optional}] defp deps(:dev), do: [{:mixunit, "~> 0.9.1", [optional: true]}]
defp deps(_), do: [] defp deps(_), do: []
defp package do defp package do

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