Skip to content

Commit

Permalink
Bump to 0.3.0
Browse files Browse the repository at this point in the history
- Fix circular dependency (use doc profile for lodox)
- Only depend on ltest in (added) test profile
- Remove unnecessary clj dependency
- Clean up rebar.lock
- Remove unused imports in levaindoc module
- Update doc
  • Loading branch information
yurrriq committed Mar 14, 2016
1 parent a0c632b commit b8db93f
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 32 deletions.
2 changes: 1 addition & 1 deletion doc
19 changes: 12 additions & 7 deletions rebar.config
Original file line number Diff line number Diff line change
Expand Up @@ -6,17 +6,12 @@
{lfe_first_files, ["src/levaindoc-util.lfe"]}.

{deps,
[{lfe, {git, "git://github.com/rvirding/lfe", {tag, "0.10.1"}}},
{ltest, {git, "git://github.com/lfex/ltest.git", {tag, "0.7.0"}}},
{clj, {git, "git://github.com/lfex/clj.git", {tag, "0.3.0"}}}]}.
[{lfe, {git, "git://github.com/rvirding/lfe", {tag, "0.10.1"}}}]}.

{plugins,
[{'lfe-compile',
{git, "git://github.com/lfe-rebar3/compile.git",
{branch, "master"}}},
{lodox,
{git, "git://github.com/quasiquoting/lodox.git",
{tag, "0.12.5"}}}]}.
{branch, "master"}}}]}.

{provider_hooks, [{pre, [{compile, {lfe, compile}}]}]}.

Expand All @@ -26,3 +21,13 @@
[{'source-uri',
"https://github.com/quasiquoting/levaindoc/blob"
"/{version}/{filepath}#L{line}"}]}]}]}.

{profiles,
[{doc, [{plugins,
[{lodox,
{git, "git://github.com/quasiquoting/lodox.git",
{tag, "0.12.5"}}}]}]},
{test, [{deps,
[{ltest,
{git, "git://github.com/lfex/ltest.git",
{tag, "0.7.0"}}}]}]}]}.
24 changes: 2 additions & 22 deletions rebar.lock
Original file line number Diff line number Diff line change
@@ -1,24 +1,4 @@
[{<<"clj">>,
{git,"git://github.com/lfex/clj.git",
{ref,"2184d0f1459922145b432cfe19ac6147169383d7"}},
0},
{<<"color">>,
{git,"git://github.com/julianduque/erlang-color.git",
{ref,"e60f6302f795220f5f0bee86391ffee5274edec0"}},
1},
{<<"kla">>,
{git,"git://github.com/lfex/kla.git",
{ref,"e9ed980aec9c18b67a8b5f9c22cfebc778282d04"}},
1},
{<<"lfe">>,
[{<<"lfe">>,
{git,"git://github.com/rvirding/lfe",
{ref,"d7bc80da04aedd0a607f17d8d149eba363872b4b"}},
0},
{<<"ltest">>,
{git,"git://github.com/lfex/ltest.git",
{ref,"dd2256a315b107cc0456d82ba378f0a4fbd6751a"}},
0},
{<<"lutil">>,
{git,"git://github.com/lfex/lutil.git",
{ref,"14fb9f5c5c6360ad7169d9bf68907747b40c0d36"}},
1}].
0}].
2 changes: 1 addition & 1 deletion src/levaindoc.app.src
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

{application, levaindoc,
[{description, "Lightweight LFE wrapper for pandoc."},
{vsn, "0.2.1"},
{vsn, "0.3.0"},
{registered, []},
{applications, [kernel, stdlib]},
{env, []},
Expand Down
1 change: 0 additions & 1 deletion src/levaindoc.lfe
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
(defmodule levaindoc
(doc "A partial LFE port of [Pandex](https://github.com/FilterKaapi/pandex).")
(import (rename erlang ((list_to_atom 1) list->atom)))
;; API
(export (convert-string 1) (convert-string 3) (convert-string 4)
(convert-file 1) (convert-file 3) (convert-file 4))
Expand Down

0 comments on commit b8db93f

Please sign in to comment.