Skip to content

Commit

Permalink
Version Bump to 0.2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
cabol committed Feb 16, 2017
1 parent 65b6132 commit a3e412b
Show file tree
Hide file tree
Showing 6 changed files with 23 additions and 7 deletions.
8 changes: 8 additions & 0 deletions .travis.yml
@@ -0,0 +1,8 @@
language: erlang
otp_release:
- 19.2
- 18.3
before_script:
- epmd -daemon
script:
- make local_test
13 changes: 12 additions & 1 deletion CHANGELOG.md
@@ -1,6 +1,17 @@
# Change Log

## [0.2.0](https://github.com/cabol/erlbus/tree/0.2.0) (2016-05-21)
## [v0.2.1](https://github.com/cabol/erlbus/tree/v0.2.1) (2017-02-15)
[Full Changelog](https://github.com/cabol/erlbus/compare/0.2.0...v0.2.1)

**Closed issues:**

- Fix tests to use rebar3 directly instead of call ct\_run [\#38](https://github.com/cabol/erlbus/issues/38)

**Merged pull requests:**

- \[\#38\] – Fix tests to use rebar3 directly instead of call ct\_run [\#39](https://github.com/cabol/erlbus/pull/39) ([cabol](https://github.com/cabol))

## [0.2.0](https://github.com/cabol/erlbus/tree/0.2.0) (2016-05-22)
[Full Changelog](https://github.com/cabol/erlbus/compare/0.1.0...0.2.0)

**Fixed bugs:**
Expand Down
2 changes: 1 addition & 1 deletion README.md
@@ -1,6 +1,6 @@
<img src="http://assets.nydailynews.com/polopoly_fs/1.1096240.1339765703!/img/httpImage/image.jpg_gen/derivatives/article_970/trains15n-1-web.jpg" height="200" width="100%" />

# ErlBus
# ErlBus [![Build Status](https://travis-ci.org/cabol/erlbus.svg?branch=master)](https://travis-ci.org/cabol/erlbus)

Message / Event Bus written in Erlang.

Expand Down
5 changes: 1 addition & 4 deletions src/ebus.app.src
Expand Up @@ -4,10 +4,7 @@
{id, "ebus"},
{modules, []},
{registered, []},
{applications, [
kernel,
stdlib
]},
{applications, [kernel, stdlib]},
{mod, {ebus, []}},
{env, []},
{maintainers, ["Carlos Andres Bolanos"]},
Expand Down
1 change: 1 addition & 0 deletions src/utils/ebus_task.erl
Expand Up @@ -295,6 +295,7 @@ get_initial_call({Mod, Fun, Args}) ->
{Mod, Fun, length(Args)}.

%% @private
-spec exit(proc_info(), callback(), term(), term()) -> no_return().
exit(_Info, _MFA, _LogReason, Reason)
when Reason == normal orelse Reason == shutdown
orelse (tuple_size(Reason) == 2 andalso element(1, Reason) == shutdown) ->
Expand Down
1 change: 0 additions & 1 deletion test/ebus_handler_SUITE.erl
Expand Up @@ -26,7 +26,6 @@
all() -> [t_handler, t_callback_handler].

init_per_suite(Config) ->
ebus:stop(),
ebus:start(),
Config.

Expand Down

0 comments on commit a3e412b

Please sign in to comment.