bump to 2.0.2 and publish to hex.pm
This commit is contained in:
parent
5c27a1db70
commit
29d07b242d
3 changed files with 31 additions and 2 deletions
|
@ -1,4 +1,4 @@
|
||||||
# jsx (v2.0.1) #
|
# jsx (v2.0.2) #
|
||||||
|
|
||||||
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]
|
||||||
|
|
29
package.exs
Normal file
29
package.exs
Normal file
|
@ -0,0 +1,29 @@
|
||||||
|
defmodule JSX.Mixfile do
|
||||||
|
use Mix.Project
|
||||||
|
|
||||||
|
def project do
|
||||||
|
[
|
||||||
|
app: :jsx,
|
||||||
|
version: "2.0.2",
|
||||||
|
description: "an erlang application for consuming, producing and manipulating json. inspired by yajl",
|
||||||
|
package: package
|
||||||
|
]
|
||||||
|
end
|
||||||
|
|
||||||
|
defp package do
|
||||||
|
[
|
||||||
|
files: [
|
||||||
|
"CHANGES.md",
|
||||||
|
"LICENSE",
|
||||||
|
"package.exs",
|
||||||
|
"README.md",
|
||||||
|
"rebar.config",
|
||||||
|
"rebar.config.script",
|
||||||
|
"config",
|
||||||
|
"src"
|
||||||
|
],
|
||||||
|
contributors: ["alisdair sullivan"],
|
||||||
|
links: [{"github", "https://github.com/talentdeficit/jsx"}]
|
||||||
|
]
|
||||||
|
end
|
||||||
|
end
|
|
@ -1,7 +1,7 @@
|
||||||
{application, jsx,
|
{application, jsx,
|
||||||
[
|
[
|
||||||
{description, "a streaming, evented json parsing toolkit"},
|
{description, "a streaming, evented json parsing toolkit"},
|
||||||
{vsn, "2.0.1"},
|
{vsn, "2.0.2"},
|
||||||
{modules, [
|
{modules, [
|
||||||
jsx,
|
jsx,
|
||||||
jsx_encoder,
|
jsx_encoder,
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue