diff --git a/CHANGELOG.md b/CHANGELOG.md index a0111c1..5a6f050 100644 --- a/CHANGELOG.md +++ b/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:** diff --git a/README.md b/README.md index c27331c..325efaa 100644 --- a/README.md +++ b/README.md @@ -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: diff --git a/src/ebus.app.src b/src/ebus.app.src index 6bd3f24..cd782ae 100644 --- a/src/ebus.app.src +++ b/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, []},