From 6b6b2665fe0fd8aee6e7c9abd8e4d0b47a4f9976 Mon Sep 17 00:00:00 2001 From: Nicholas Lundgaard Date: Sun, 18 Aug 2019 17:07:28 -0500 Subject: [PATCH] Delete unneeded rebar.config.script This was missed in https://github.com/nalundgaard/jsn/pull/18, much like the jsonx removal from the app.src done in https://github.com/nalundgaard/jsn/pull/19. No deps at all means no need to re-format them. --- README.md | 4 ++++ rebar.config.script | 7 ------- src/jsn.app.src | 2 +- 3 files changed, 5 insertions(+), 8 deletions(-) delete mode 100644 rebar.config.script diff --git a/README.md b/README.md index 6202e37..a4c6068 100644 --- a/README.md +++ b/README.md @@ -54,6 +54,10 @@ Future improvements to this library are TBD at this time. ## Changelog +18 August 2019 - 2.1.2 + +* Remove unneeded rebar.config.script ([#31](https://github.com/nalundgaard/jsn/pull/31)) + 27 February 2018 - 2.1.1 * Resolved #24, jsn:new fails while making an array of objects in struct ( resolved by PR #25) diff --git a/rebar.config.script b/rebar.config.script deleted file mode 100644 index 4c9015c..0000000 --- a/rebar.config.script +++ /dev/null @@ -1,7 +0,0 @@ -case erlang:function_exported(rebar3, main, 1) of - true -> % rebar3 - CONFIG; - false -> % rebar 2.x or older - NewDeps = {deps, [{jsonx, "", {git, "https://github.com/alertlogic/jsonx.git", {branch, master}}}]}, - lists:keyreplace(deps, 1, CONFIG, NewDeps) -end. diff --git a/src/jsn.app.src b/src/jsn.app.src index 8a85e7e..2739c22 100644 --- a/src/jsn.app.src +++ b/src/jsn.app.src @@ -1,6 +1,6 @@ {application, jsn, [ {description, "Utilities for interacting with decoded JSON in erlang"}, - {vsn, "2.1.1"}, + {vsn, "2.1.2"}, {applications, [kernel, stdlib ]},