Skip to content

Commit

Permalink
Version Bump to v0.2.2
Browse files Browse the repository at this point in the history
  • Loading branch information
cabol committed Nov 13, 2018
1 parent d0bf1f4 commit 24a3cc9
Show file tree
Hide file tree
Showing 3 changed files with 37 additions and 4 deletions.
10 changes: 9 additions & 1 deletion CHANGELOG.md
@@ -1,6 +1,14 @@
# Change Log

## [v0.2.1](https://github.com/cabol/erlbus/tree/v0.2.1) (2017-02-15)
## [v0.2.2](https://github.com/cabol/erlbus/tree/v0.2.2) (2018-11-13)
[Full Changelog](https://github.com/cabol/erlbus/compare/v0.2.1...v0.2.2)

**Closed issues:**

- erlang:get\_stacktrace\(\) stop working on v21 [\#40](https://github.com/cabol/erlbus/issues/40)
- Please publish to hex.pm [\#37](https://github.com/cabol/erlbus/issues/37)

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

**Closed issues:**
Expand Down
27 changes: 26 additions & 1 deletion README.md
Expand Up @@ -25,7 +25,32 @@ which provides an amazing, scalable and proven PubSub solution. In addition to t
You can read more about the PubSub implementation [HERE](https://hexdocs.pm/phoenix/Phoenix.PubSub.html).


## Building ErlBus
## Installation

### Erlang

In your `rebar.config`:

```erlang
{deps, [
{ebus, "0.2.2", {pkg, erlbus}}
]}.
```

### Elixir

In your `mix.exs`:

```elixir
def deps do
[
{:ebus, "~> 0.2", hex: :erlbus}
]
end
```


## Getting Started

Assuming you have a working Erlang installation (18 or later), building **ErlBus** should be as simple as:

Expand Down
4 changes: 2 additions & 2 deletions src/ebus.app.src
@@ -1,6 +1,6 @@
{application, ebus, [
{description, "Erlang Message Event Bus"},
{vsn, "0.2.1"},
{description, "Simple, Distributed and Scalable PubSub Message Bus written in Erlang"},
{vsn, "0.2.2"},
{id, "ebus"},
{modules, []},
{registered, []},
Expand Down

0 comments on commit 24a3cc9

Please sign in to comment.