Skip to content

Commit

Permalink
Version Bump to 0.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
cabol committed May 22, 2016
1 parent 15f3156 commit 9551a43
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 26 deletions.
48 changes: 27 additions & 21 deletions CHANGELOG.md
@@ -1,6 +1,31 @@
# Change Log

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

**Fixed bugs:**

- Fix chat example regarding with changes in new version 0.2.0 [\#30](https://github.com/cabol/erlbus/issues/30)

**Closed issues:**

- Replace current build tool `erlang.mk` by `rebar3` [\#26](https://github.com/cabol/erlbus/issues/26)
- Implement distributed tests [\#24](https://github.com/cabol/erlbus/issues/24)
- Fix Makefile.rebar to use rebar3 [\#19](https://github.com/cabol/erlbus/issues/19)

**Merged pull requests:**

- General fixes and code optimizations. [\#35](https://github.com/cabol/erlbus/pull/35) ([cabol](https://github.com/cabol))
- Refactor messages to use maps instead of records. [\#34](https://github.com/cabol/erlbus/pull/34) ([cabol](https://github.com/cabol))
- Fixed `proplist\_to\_record` macro, added point\_to\_point example, fixed version to 1.0.0. [\#33](https://github.com/cabol/erlbus/pull/33) ([cabol](https://github.com/cabol))
- Fixed EDoc and optimize `ebus:subscribers/2` and `ebus:topics/1` functions. [\#32](https://github.com/cabol/erlbus/pull/32) ([cabol](https://github.com/cabol))
- Fixed chat example regarding to version 0.2.0 changes [\#31](https://github.com/cabol/erlbus/pull/31) ([ferigis](https://github.com/ferigis))
- Version Bump to 0.2.0 [\#29](https://github.com/cabol/erlbus/pull/29) ([cabol](https://github.com/cabol))

## [0.1.0](https://github.com/cabol/erlbus/tree/0.1.0) (2016-01-06)
**Implemented enhancements:**

- Implement sharding distribution model using `jumping consistent hash` on top of `gproc` [\#27](https://github.com/cabol/erlbus/issues/27)

**Fixed bugs:**

Expand All @@ -9,45 +34,26 @@
**Merged pull requests:**

- Fixed ebus\_handler to support handle\_fun/1 [\#28](https://github.com/cabol/erlbus/pull/28) ([cabol](https://github.com/cabol))

- Fixed ebus\_handler to allow create new handlers/pools receiving a fun… [\#23](https://github.com/cabol/erlbus/pull/23) ([cabol](https://github.com/cabol))

- Chat Example : Switching to cowboy 1.0 in order to support previous E… [\#22](https://github.com/cabol/erlbus/pull/22) ([ferigis](https://github.com/ferigis))

- Chat Example : Unsubscribing from the channel when terminate [\#21](https://github.com/cabol/erlbus/pull/21) ([ferigis](https://github.com/ferigis))

- Issue \#17: replace function now/0 by os:timestamp/0, for compatibilit… [\#18](https://github.com/cabol/erlbus/pull/18) ([cabol](https://github.com/cabol))

- Adding Chat Example [\#15](https://github.com/cabol/erlbus/pull/15) ([ferigis](https://github.com/ferigis))

- Fixes to ebus\_pg2 module. [\#14](https://github.com/cabol/erlbus/pull/14) ([cabol](https://github.com/cabol))

- Refactoring functions: get\_subscribers -\> subscribers and get\_channel… [\#13](https://github.com/cabol/erlbus/pull/13) ([cabol](https://github.com/cabol))

- Fixed 'ebus:sub/2,3' and 'ebus:unsub/2,3' to receive either a single … [\#12](https://github.com/cabol/erlbus/pull/12) ([cabol](https://github.com/cabol))

- Code Dialyzed. Added pool\_hanler to pub\_sub example. [\#11](https://github.com/cabol/erlbus/pull/11) ([cabol](https://github.com/cabol))

- Fixed indentation issue. [\#10](https://github.com/cabol/erlbus/pull/10) ([cabol](https://github.com/cabol))

- Cabol.version 0.1 [\#9](https://github.com/cabol/erlbus/pull/9) ([cabol](https://github.com/cabol))

- Fixed indentation in .app.src file from pub\_sub example. Added image … [\#8](https://github.com/cabol/erlbus/pull/8) ([cabol](https://github.com/cabol))

- Fixed indentation. [\#7](https://github.com/cabol/erlbus/pull/7) ([cabol](https://github.com/cabol))

- Added pub\_sub example. Fixed build files, updated erlang.mk. [\#6](https://github.com/cabol/erlbus/pull/6) ([cabol](https://github.com/cabol))

- Added rebar.config.script to fetch dependencies on-demand when using … [\#5](https://github.com/cabol/erlbus/pull/5) ([cabol](https://github.com/cabol))

- Added status function to ebus\_handler module. Fixed README. [\#4](https://github.com/cabol/erlbus/pull/4) ([cabol](https://github.com/cabol))

- Fixed anonymous handler in ebus\_handler. Fixed documentation. Added C… [\#3](https://github.com/cabol/erlbus/pull/3) ([cabol](https://github.com/cabol))

- Cabol.version 0.1 [\#2](https://github.com/cabol/erlbus/pull/2) ([cabol](https://github.com/cabol))

- Fixed README [\#1](https://github.com/cabol/erlbus/pull/1) ([cabol](https://github.com/cabol))



\* *This Change Log was automatically generated by [github_changelog_generator](https://github.com/skywinder/Github-Changelog-Generator)*
\* *This Change Log was automatically generated by [github_changelog_generator](https://github.com/skywinder/Github-Changelog-Generator)*
8 changes: 3 additions & 5 deletions src/ebus.app.src
@@ -1,12 +1,10 @@
{application, ebus,
[
{application, ebus, [
{description, "Erlang Message Event Bus"},
{vsn, "1.0.0"},
{vsn, "0.2.0"},
{id, "git"},
{modules, []},
{registered, []},
{applications, [kernel, stdlib]},
{mod, {ebus, []}},
{env, []}
]
}.
]}.

0 comments on commit 9551a43

Please sign in to comment.