Skip to content

Commit 0ac5f75

Browse files
authored
Merge pull request #81 from clojerl/prepare-release-0.8.0
Prepare release 0.8.0
2 parents 11cd1ef + 1e05402 commit 0ac5f75

File tree

5 files changed

+39
-5
lines changed

5 files changed

+39
-5
lines changed

CHANGELOG.md

Lines changed: 34 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,34 @@
11
# Changelog
22

3-
## [0.7.0](https://github.com/clojerl/rebar3_clojerl/tree/0.7.0)
3+
## [0.8.0](https://github.com/clojerl/rebar3_clojerl/tree/0.8.0)
4+
5+
[Full Changelog](https://github.com/clojerl/rebar3_clojerl/compare/0.7.0...0.8.0)
6+
7+
**Implemented enhancements:**
8+
9+
- Include stacktrace on error [\#75](https://github.com/clojerl/rebar3_clojerl/issues/75)
10+
- Add escriptize command [\#67](https://github.com/clojerl/rebar3_clojerl/issues/67)
11+
- Create template for creating escripts [\#63](https://github.com/clojerl/rebar3_clojerl/issues/63)
12+
13+
**Fixed bugs:**
14+
15+
- Run command fails with more than one argument [\#73](https://github.com/clojerl/rebar3_clojerl/issues/73)
16+
- repl command crashes on first compilation on OTP 19 [\#72](https://github.com/clojerl/rebar3_clojerl/issues/72)
17+
18+
**Closed issues:**
19+
20+
- Release support? [\#79](https://github.com/clojerl/rebar3_clojerl/issues/79)
21+
- Generate .app.src from project.clj [\#10](https://github.com/clojerl/rebar3_clojerl/issues/10)
22+
23+
**Merged pull requests:**
24+
25+
- \[\#79\] Release template and command [\#80](https://github.com/clojerl/rebar3_clojerl/pull/80) ([jfacorro](https://github.com/jfacorro))
26+
- \[\#63\] escript template [\#78](https://github.com/clojerl/rebar3_clojerl/pull/78) ([jfacorro](https://github.com/jfacorro))
27+
- \[\#67\] Add escriptize command [\#77](https://github.com/clojerl/rebar3_clojerl/pull/77) ([jfacorro](https://github.com/jfacorro))
28+
- \[\#75\] Include stacktrace on compile error [\#76](https://github.com/clojerl/rebar3_clojerl/pull/76) ([jfacorro](https://github.com/jfacorro))
29+
- \[\#73\] Resolve var and then apply the arguments [\#74](https://github.com/clojerl/rebar3_clojerl/pull/74) ([jfacorro](https://github.com/jfacorro))
30+
31+
## [0.7.0](https://github.com/clojerl/rebar3_clojerl/tree/0.7.0) (2020-03-22)
432

533
[Full Changelog](https://github.com/clojerl/rebar3_clojerl/compare/0.6.8...0.7.0)
634

@@ -15,6 +43,7 @@
1543

1644
**Merged pull requests:**
1745

46+
- Prepare release 0.7.0 [\#71](https://github.com/clojerl/rebar3_clojerl/pull/71) ([jfacorro](https://github.com/jfacorro))
1847
- \[\#69\] Restart clojerl before starting the REPL when clje.user doesn't refer vars from clojure.core [\#70](https://github.com/clojerl/rebar3_clojerl/pull/70) ([jfacorro](https://github.com/jfacorro))
1948
- \[\#65\] Add run command [\#66](https://github.com/clojerl/rebar3_clojerl/pull/66) ([jfacorro](https://github.com/jfacorro))
2049
- Renamed compile\_file to file [\#64](https://github.com/clojerl/rebar3_clojerl/pull/64) ([jfacorro](https://github.com/jfacorro))
@@ -183,7 +212,6 @@
183212
**Merged pull requests:**
184213

185214
- \[Closes \#18\] Define \*compile-protocols-path\* as the current project's ebin directory [\#19](https://github.com/clojerl/rebar3_clojerl/pull/19) ([jfacorro](https://github.com/jfacorro))
186-
- Use clj\_utils:stacktrace/1 [\#17](https://github.com/clojerl/rebar3_clojerl/pull/17) ([jfacorro](https://github.com/jfacorro))
187215

188216
## [0.2.2](https://github.com/clojerl/rebar3_clojerl/tree/0.2.2) (2018-03-04)
189217

@@ -193,6 +221,10 @@
193221

194222
- Print all of stacktrace on error only when debugging [\#15](https://github.com/clojerl/rebar3_clojerl/issues/15)
195223

224+
**Merged pull requests:**
225+
226+
- Use clj\_utils:stacktrace/1 [\#17](https://github.com/clojerl/rebar3_clojerl/pull/17) ([jfacorro](https://github.com/jfacorro))
227+
196228
## [0.2.1](https://github.com/clojerl/rebar3_clojerl/tree/0.2.1) (2018-02-08)
197229

198230
[Full Changelog](https://github.com/clojerl/rebar3_clojerl/compare/0.2.0...0.2.1)

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@ $ rebar3 help clojerl
2828
clojerl <task>:
2929
compile Compile clojerl project
3030
escriptize Generate escript archive.
31+
release Build release of Clojerl project.
3132
repl Start a clojerl repl
3233
run Run the project's -main function.
3334
test Test clojerl project
@@ -100,6 +101,7 @@ any of the available templates:
100101

101102
* `clojerl_app`: create a Clojerl OTP application.
102103
* `clojerl_escript`: create a Clojerl escript.
104+
* `clojerl_release`: create a Clojerl release.
103105

104106
For example:
105107

priv/templates/escript.rebar.config.tpl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{erl_opts, [debug_info]}.
22

33
{deps, [{clojerl, "0.6.0"}]}.
4-
{plugins, [{rebar3_clojerl, "0.7.0"}]}.
4+
{plugins, [{rebar3_clojerl, "0.8.0"}]}.
55

66
{escript_incl_apps, [{{name}}]}.
77
{escript_main_app, {{name}}}.

priv/templates/rebar.config.tpl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
{erl_opts, [debug_info]}.
22

33
{deps, [{clojerl, "0.6.0"}]}.
4-
{plugins, [{rebar3_clojerl, "0.7.0"}]}.
4+
{plugins, [{rebar3_clojerl, "0.8.0"}]}.

priv/templates/release.rebar.config.tpl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{erl_opts, [debug_info]}.
22

33
{deps, [{clojerl, "0.6.0"}]}.
4-
{plugins, [{rebar3_clojerl, "0.7.0"}]}.
4+
{plugins, [{rebar3_clojerl, "0.8.0"}]}.
55

66
{relx, [ { release
77
, {{{name}}, "0.1.0"}

0 commit comments

Comments
 (0)