Current section
13 Versions
Jump to
Current section
13 Versions
Compare versions
11
files changed
+121
additions
-22
deletions
| @@ -1,6 +1,29 @@ | |
| 1 1 | # Changelog |
| 2 2 | |
| 3 | - ## [0.8.6](https://github.com/clojerl/rebar3_clojerl/tree/0.8.6) |
| 3 | + ## [0.8.7](https://github.com/clojerl/rebar3_clojerl/tree/0.8.7) |
| 4 | + |
| 5 | + [Full Changelog](https://github.com/clojerl/rebar3_clojerl/compare/0.8.6...0.8.7) |
| 6 | + |
| 7 | + **Implemented enhancements:** |
| 8 | + |
| 9 | + - --config option for clojerl repl command [\#14](https://github.com/clojerl/rebar3_clojerl/issues/14) |
| 10 | + |
| 11 | + **Closed issues:** |
| 12 | + |
| 13 | + - Bump versions in templates [\#114](https://github.com/clojerl/rebar3_clojerl/issues/114) |
| 14 | + - Remove unnecessary `mod` attribute in the lib template [\#112](https://github.com/clojerl/rebar3_clojerl/issues/112) |
| 15 | + - Create profile for generating docs [\#111](https://github.com/clojerl/rebar3_clojerl/issues/111) |
| 16 | + - Add profile for generating docs [\#109](https://github.com/clojerl/rebar3_clojerl/issues/109) |
| 17 | + - Add clojerl src directories from dependencies [\#106](https://github.com/clojerl/rebar3_clojerl/issues/106) |
| 18 | + |
| 19 | + **Merged pull requests:** |
| 20 | + |
| 21 | + - \[\#14\] Add `--config` flag for the REPL [\#116](https://github.com/clojerl/rebar3_clojerl/pull/116) ([arpunk](https://github.com/arpunk)) |
| 22 | + - \[\#114\] Bump versions in templates [\#115](https://github.com/clojerl/rebar3_clojerl/pull/115) ([arpunk](https://github.com/arpunk)) |
| 23 | + - \[\#112\] Remove unnecessary mod attribute [\#113](https://github.com/clojerl/rebar3_clojerl/pull/113) ([arpunk](https://github.com/arpunk)) |
| 24 | + - \[\#109\] Create a profile for generating docs [\#110](https://github.com/clojerl/rebar3_clojerl/pull/110) ([jfacorro](https://github.com/jfacorro)) |
| 25 | + |
| 26 | + ## [0.8.6](https://github.com/clojerl/rebar3_clojerl/tree/0.8.6) (2021-06-18) |
| 4 27 | |
| 5 28 | [Full Changelog](https://github.com/clojerl/rebar3_clojerl/compare/0.8.5...0.8.6) |
| 6 29 | |
| @@ -10,6 +33,7 @@ | |
| 10 33 | |
| 11 34 | **Merged pull requests:** |
| 12 35 | |
| 36 | + - Prepare release 0.8.6 [\#108](https://github.com/clojerl/rebar3_clojerl/pull/108) ([jfacorro](https://github.com/jfacorro)) |
| 13 37 | - \[\#106\] Add the src directories from dependencies before compiling clojerl [\#107](https://github.com/clojerl/rebar3_clojerl/pull/107) ([jfacorro](https://github.com/jfacorro)) |
| 14 38 | - Support for relx 4.0 as per rebar 3.14.0 [\#105](https://github.com/clojerl/rebar3_clojerl/pull/105) ([arpunk](https://github.com/arpunk)) |
| 15 39 | - \[\#103\] Add Makefile with targets to publish to hex [\#104](https://github.com/clojerl/rebar3_clojerl/pull/104) ([jfacorro](https://github.com/jfacorro)) |
| @@ -43,10 +43,12 @@ by running for example: | |
| 43 43 | $ rebar3 help clojerl repl |
| 44 44 | Start a clojerl repl |
| 45 45 | Usage: rebar3 clojerl repl [--apps <apps>] [--sname <sname>] |
| 46 | + [--config <config>] |
| 46 47 | |
| 47 48 | --apps List of applications that should be started separated by commas |
| 48 49 | (e.g. --apps app1,app2,app3). |
| 49 50 | --sname Erlang node name. |
| 51 | + --config Path to the config file to load. |
| 50 52 | |
| 51 53 | ### rebar.config options |
| @@ -13,8 +13,8 @@ | |
| 13 13 | <<"priv/templates/escript.README.md.tpl">>, |
| 14 14 | <<"priv/templates/escript.app.src.tpl">>, |
| 15 15 | <<"priv/templates/escript.rebar.config.tpl">>, |
| 16 | - <<"priv/templates/gitignore.tpl">>,<<"priv/templates/name.clje.tpl">>, |
| 17 | - <<"priv/templates/rebar.config.tpl">>, |
| 16 | + <<"priv/templates/gitignore.tpl">>,<<"priv/templates/lib.src.tpl">>, |
| 17 | + <<"priv/templates/name.clje.tpl">>,<<"priv/templates/rebar.config.tpl">>, |
| 18 18 | <<"priv/templates/release.rebar.config.tpl">>, |
| 19 19 | <<"priv/templates/sup.clje.tpl">>,<<"priv/templates/sys.config.tpl">>, |
| 20 20 | <<"priv/templates/vm.args.tpl">>,<<"rebar.config">>,<<"rebar.lock">>, |
| @@ -30,4 +30,4 @@ | |
| 30 30 | {<<"GitHub">>,<<"https://github.com/clojerl/rebar3_clojerl">>}]}. |
| 31 31 | {<<"name">>,<<"rebar3_clojerl">>}. |
| 32 32 | {<<"requirements">>,[]}. |
| 33 | - {<<"version">>,<<"0.8.6">>}. |
| 33 | + {<<"version">>,<<"0.8.7">>}. |
| @@ -10,5 +10,5 @@ | |
| 10 10 | {template, "gitignore.tpl", "{{name}}/.gitignore"}. |
| 11 11 | |
| 12 12 | {template, "core.clje.tpl", "{{name}}/src/{{name}}/core.clje"}. |
| 13 | - {template, "app.src.tpl", "{{name}}/src/{{name}}.app.src"}. |
| 13 | + {template, "lib.src.tpl", "{{name}}/src/{{name}}.app.src"}. |
| 14 14 | {template, "core_test.clje.tpl", "{{name}}/test/{{name}}/core_test.clje"}. |
| @@ -1,7 +1,7 @@ | |
| 1 1 | {erl_opts, [debug_info]}. |
| 2 2 | |
| 3 | - {deps, [{clojerl, "0.7.0"}]}. |
| 4 | - {plugins, [{rebar3_clojerl, "0.8.5"}]}. |
| 3 | + {deps, [{clojerl, "0.7.1"}]}. |
| 4 | + {plugins, [{rebar3_clojerl, "0.8.6"}]}. |
| 5 5 | |
| 6 6 | {escript_incl_apps, [{{name}}]}. |
| 7 7 | {escript_main_app, {{name}}}. |
Loading more files…