Skip to content

Commit

Permalink
v2.4.3
Browse files Browse the repository at this point in the history
  • Loading branch information
jlouis committed Jun 23, 2021
1 parent a63f068 commit fe32699
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 21 deletions.
4 changes: 2 additions & 2 deletions doc/overview.edoc
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
@author Jesper Louis Andersen <[email protected]>
@copyright 2014–2016 Jesper Louis Andersen
@copyright 2014–2021 Jesper Louis Andersen
@title fuse - a circuit breaker for Erlang
@version 2.4.0
@2.4.x

@doc

Expand Down
2 changes: 2 additions & 0 deletions rebar.config
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@

{deps, []}.

{project_plugins, [rebar3_hex]}.

{profiles, [
{test, [{erl_opts, [nowarn_export_all, debug_info]} ]}

Expand Down
30 changes: 11 additions & 19 deletions src/fuse.app.src
Original file line number Diff line number Diff line change
@@ -1,19 +1,11 @@
{application, fuse, [
{description, "A Circuit breaker implementation for Erlang"},
{vsn, "2.4.0"},
{modules, []},
{registered, [fuse_server, fuse_monitor, fuse_event, fuse_sup]},
{applications, [
kernel,
stdlib,
sasl
]},
{mod, {fuse_app, []}},
{env, [
{monitor, true}
]},

{maintainers, ["Jesper Louis Andersen"]},
{licenses, ["MIT"]},
{links, [{"Github", "https://github.com/jlouis/fuse"}]}
]}.
{application,fuse,
[{description,"A Circuit breaker implementation for Erlang"},
{vsn,"2.4.3"},
{modules,[]},
{registered,[fuse_server,fuse_monitor,fuse_event,fuse_sup]},
{applications,[kernel,stdlib,sasl]},
{mod,{fuse_app,[]}},
{env,[{monitor,true}]},
{maintainers,["Jesper Louis Andersen"]},
{licenses,["MIT"]},
{links,[{"Github","https://github.com/jlouis/fuse"}]}]}.

0 comments on commit fe32699

Please sign in to comment.