Merge branch 'develop'

This commit is contained in:
alisdair sullivan 2015-06-11 19:56:40 -07:00
commit 46f246dc3a
6 changed files with 16 additions and 7 deletions

View file

@ -1,3 +1,11 @@
v2.6.2
* ensure maps are always enabled when compiling via mix
v2.6.1
* hex.pm maintenance release
v2.6.0 v2.6.0
* equivalent to v2.5.3 but created for semver reasons * equivalent to v2.5.3 but created for semver reasons

View file

@ -1,4 +1,4 @@
# jsx (v2.6.0) # # jsx (v2.6.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.6.0", version: "2.6.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,
@ -13,11 +13,10 @@ use Mix.Project
] ]
end end
defp opts(:dev), do: [d: :TEST] defp opts(:dev), do: [d: :TEST] ++ opts(:prod)
defp opts(_), do: [] defp opts(_), do: [d: :maps_support, d: :maps_always]
defp deps(:dev), do: [{:mixunit, "~> 0.9.1", [optional: true]}] defp deps(_), do: [{:mixunit, git: "git@github.com:talentdeficit/mixunit.git", only: :dev}]
defp deps(_), do: []
defp package do defp package do
[ [

1
mix.lock Normal file
View file

@ -0,0 +1 @@
%{"mixunit": {:git, "git@github.com:talentdeficit/mixunit.git", "9cf0098a069e70f65300e2939d0c2c06abb71cd1", []}}

1
rebar.lock Normal file
View file

@ -0,0 +1 @@
[].

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