Skip to content

Commit

Permalink
Merge pull request #81 from clojerl/prepare-release-0.8.0
Browse files Browse the repository at this point in the history
Prepare release 0.8.0
  • Loading branch information
jfacorro authored Jul 7, 2020
2 parents 11cd1ef + 1e05402 commit 0ac5f75
Show file tree
Hide file tree
Showing 5 changed files with 39 additions and 5 deletions.
36 changes: 34 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,34 @@
# Changelog

## [0.7.0](https://github.com/clojerl/rebar3_clojerl/tree/0.7.0)
## [0.8.0](https://github.com/clojerl/rebar3_clojerl/tree/0.8.0)

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

**Implemented enhancements:**

- Include stacktrace on error [\#75](https://github.com/clojerl/rebar3_clojerl/issues/75)
- Add escriptize command [\#67](https://github.com/clojerl/rebar3_clojerl/issues/67)
- Create template for creating escripts [\#63](https://github.com/clojerl/rebar3_clojerl/issues/63)

**Fixed bugs:**

- Run command fails with more than one argument [\#73](https://github.com/clojerl/rebar3_clojerl/issues/73)
- repl command crashes on first compilation on OTP 19 [\#72](https://github.com/clojerl/rebar3_clojerl/issues/72)

**Closed issues:**

- Release support? [\#79](https://github.com/clojerl/rebar3_clojerl/issues/79)
- Generate .app.src from project.clj [\#10](https://github.com/clojerl/rebar3_clojerl/issues/10)

**Merged pull requests:**

- \[\#79\] Release template and command [\#80](https://github.com/clojerl/rebar3_clojerl/pull/80) ([jfacorro](https://github.com/jfacorro))
- \[\#63\] escript template [\#78](https://github.com/clojerl/rebar3_clojerl/pull/78) ([jfacorro](https://github.com/jfacorro))
- \[\#67\] Add escriptize command [\#77](https://github.com/clojerl/rebar3_clojerl/pull/77) ([jfacorro](https://github.com/jfacorro))
- \[\#75\] Include stacktrace on compile error [\#76](https://github.com/clojerl/rebar3_clojerl/pull/76) ([jfacorro](https://github.com/jfacorro))
- \[\#73\] Resolve var and then apply the arguments [\#74](https://github.com/clojerl/rebar3_clojerl/pull/74) ([jfacorro](https://github.com/jfacorro))

## [0.7.0](https://github.com/clojerl/rebar3_clojerl/tree/0.7.0) (2020-03-22)

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

Expand All @@ -15,6 +43,7 @@

**Merged pull requests:**

- Prepare release 0.7.0 [\#71](https://github.com/clojerl/rebar3_clojerl/pull/71) ([jfacorro](https://github.com/jfacorro))
- \[\#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))
- \[\#65\] Add run command [\#66](https://github.com/clojerl/rebar3_clojerl/pull/66) ([jfacorro](https://github.com/jfacorro))
- Renamed compile\_file to file [\#64](https://github.com/clojerl/rebar3_clojerl/pull/64) ([jfacorro](https://github.com/jfacorro))
Expand Down Expand Up @@ -183,7 +212,6 @@
**Merged pull requests:**

- \[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))
- Use clj\_utils:stacktrace/1 [\#17](https://github.com/clojerl/rebar3_clojerl/pull/17) ([jfacorro](https://github.com/jfacorro))

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

Expand All @@ -193,6 +221,10 @@

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

**Merged pull requests:**

- Use clj\_utils:stacktrace/1 [\#17](https://github.com/clojerl/rebar3_clojerl/pull/17) ([jfacorro](https://github.com/jfacorro))

## [0.2.1](https://github.com/clojerl/rebar3_clojerl/tree/0.2.1) (2018-02-08)

[Full Changelog](https://github.com/clojerl/rebar3_clojerl/compare/0.2.0...0.2.1)
Expand Down
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ $ rebar3 help clojerl
clojerl <task>:
compile Compile clojerl project
escriptize Generate escript archive.
release Build release of Clojerl project.
repl Start a clojerl repl
run Run the project's -main function.
test Test clojerl project
Expand Down Expand Up @@ -100,6 +101,7 @@ any of the available templates:

* `clojerl_app`: create a Clojerl OTP application.
* `clojerl_escript`: create a Clojerl escript.
* `clojerl_release`: create a Clojerl release.

For example:

Expand Down
2 changes: 1 addition & 1 deletion priv/templates/escript.rebar.config.tpl
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{erl_opts, [debug_info]}.

{deps, [{clojerl, "0.6.0"}]}.
{plugins, [{rebar3_clojerl, "0.7.0"}]}.
{plugins, [{rebar3_clojerl, "0.8.0"}]}.

{escript_incl_apps, [{{name}}]}.
{escript_main_app, {{name}}}.
Expand Down
2 changes: 1 addition & 1 deletion priv/templates/rebar.config.tpl
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{erl_opts, [debug_info]}.

{deps, [{clojerl, "0.6.0"}]}.
{plugins, [{rebar3_clojerl, "0.7.0"}]}.
{plugins, [{rebar3_clojerl, "0.8.0"}]}.
2 changes: 1 addition & 1 deletion priv/templates/release.rebar.config.tpl
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{erl_opts, [debug_info]}.

{deps, [{clojerl, "0.6.0"}]}.
{plugins, [{rebar3_clojerl, "0.7.0"}]}.
{plugins, [{rebar3_clojerl, "0.8.0"}]}.

{relx, [ { release
, {{{name}}, "0.1.0"}
Expand Down

0 comments on commit 0ac5f75

Please sign in to comment.